What Makes a Redundant Representation Remember? Lineage Isolation, Not Masking

TL;DR

Study finds lineage isolation, not masking, is key for memory retention, improving AUC by 0.010.

cs.NE 🔴 Advanced 2026-09-04 83 views
Jia Huang Yangjun Ou
redundant representation evolutionary algorithm dynamic optimization memory retention inheritance rule

Key Findings

Methodology

The paper introduces a gated dual-copy representation method, divided into gating and inheritance rules. The gating rule decides which copy is evaluated, while the inheritance rule determines how copies mix across generations. A 2×2 ablation study shows that information retention is almost entirely determined by the inheritance rule, with minimal impact from the gating rule.

Key Results

  • In periodic environments, isolated inheritance retains 21.4 bits more information than mixing inheritance, with minimal impact from the gating rule.
  • In periodic environments, the dual-copy method improves AUC by 0.010 over a single-copy baseline, but decreases by 0.078 in unidirectional drift environments.
  • Changing the recombination operator can shift the baseline AUC by 0.062, significantly affecting experimental results.

Significance

This study reveals the true effective mechanism of redundant representation in evolutionary algorithms, challenging traditional views. By using isolated inheritance rules, algorithms can better retain historical optimal information in dynamic optimization. This finding is significant for evolutionary computation and dynamic optimization, potentially influencing future algorithm design.

Technical Contribution

The technical contribution lies in clarifying the effective mechanism of redundant representation, providing a formal definition of gated dual-copy representation, and experimentally validating the superiority of isolated inheritance. This offers new theoretical perspectives and engineering possibilities for dynamic optimization problems.

Novelty

This study is the first to attribute the effectiveness of redundant representation to isolated inheritance rather than the traditional masking assumption. The innovation lies in clearly distinguishing the roles of gating and inheritance rules, providing a new experimental verification method.

Limitations

  • In static environments, dual-copy representation fails to improve mutation tolerance, instead reducing adaptability.
  • Experiments were only conducted on XOR dynamic benchmarks, not tested in other complex environments.

Future Work

Future research could explore performance in different environments and problem scales, optimize inheritance rules to reduce the carrying cost of redundant representation, and verify its effectiveness in more complex dynamic optimization problems.

AI Executive Summary

Redundant representation in evolutionary algorithms is often used to retain historical optimal information, but the traditional masking assumption fails to effectively explain its mechanism. This paper reveals that lineage isolation is the key to information retention through a gated dual-copy representation. Experiments show that in periodic environments, isolated inheritance rules significantly enhance information retention, with minimal impact from the gating rule.

By comparing periodic and unidirectional drift environments, the study excludes other possible explanations such as increased capacity, clearly identifying the source of memory contribution. This finding is significant for evolutionary computation and dynamic optimization, potentially influencing future algorithm design.

However, in static environments, dual-copy representation fails to improve mutation tolerance, instead reducing adaptability. Future research could explore performance in different environments and problem scales, optimize inheritance rules to reduce the carrying cost of redundant representation.

Deep Analysis

Background

In evolutionary algorithms, redundant representation is commonly used to retain historical information. Traditionally, the masking assumption suggests that the unevaluated copy can retain information. However, this assumption has not been rigorously tested. This paper revisits the issue through a gated dual-copy representation.

Core Problem

The effectiveness of redundant representation lies in its ability to truly retain historical optimal information. The traditional masking assumption fails to effectively explain its mechanism, leading to poor performance in dynamic optimization.

Innovation

This paper innovatively proposes a gated dual-copy representation, clearly distinguishing the roles of gating and inheritance rules. Through experimental validation, it is found that isolated inheritance is key to information retention, rather than the traditional masking assumption.

Methodology

  • �� Gating rule: decides which copy is evaluated.
  • �� Inheritance rule: determines how copies mix across generations.
  • �� Experimental design: validated the impact of different rules through a 2×2 ablation study.

Experiments

Experiments were conducted on XOR dynamic benchmarks, comparing performance in periodic and unidirectional drift environments. Different recombination operators were used to verify their impact on the baseline.

Results

Experiments show that isolated inheritance rules significantly enhance information retention, with minimal impact from the gating rule. Changing the recombination operator can shift the baseline AUC by 0.062, significantly affecting experimental results.

Applications

This method can be used in scenarios requiring historical information retention in dynamic optimization, such as financial market prediction and dynamic resource allocation.

Limitations & Outlook

Experiments were only conducted on XOR dynamic benchmarks, not tested in other complex environments. Additionally, dual-copy representation fails to improve mutation tolerance in static environments.

Plain Language Accessible to non-experts

Imagine a kitchen with two chefs each preparing the same dish, but only one dish will be served. The traditional view suggests that the unserved dish can retain ingredient information. However, this paper finds that only when the two chefs work completely independently does the unserved dish truly retain information. It's like two chefs preparing their own dishes without influencing each other to ensure each dish's unique flavor is preserved.

ELI14 Explained like you're 14

Imagine you're playing a game with two characters to choose from, but you can only use one at a time. You might think the unused character retains some secret skills, but actually, only when these two characters are completely independent do they truly retain these skills. It's like in school, if you and your friend always copy each other's homework, you won't really learn anything.

Glossary

Redundant Representation

In evolutionary algorithms, it refers to a representation method where individuals carry multiple gene copies.

Used to retain historical optimal information.

Gating Rule

The rule that decides which gene copy is evaluated.

One of the mechanisms affecting information retention.

Inheritance Rule

The rule that determines how gene copies mix across generations.

Key factor in information retention.

Information Retention

The ability of an algorithm to retain historical optimal information in dynamic environments.

A metric for evaluating the effectiveness of redundant representation.

Dynamic Optimization

Optimization problems involving objective functions that change over time.

The application scenario studied in this paper.

Open Questions Unanswered questions from this research

  • 1 How to verify the effectiveness of isolated inheritance in more complex dynamic environments? Current experiments are limited to simple XOR benchmarks.
  • 2 Can inheritance rules be optimized to reduce the carrying cost of redundant representation?

Applications

Immediate Applications

Dynamic Resource Allocation

Optimize allocation strategies using isolated inheritance rules in scenarios with changing resource demands to improve efficiency.

Long-term Vision

Intelligent Financial Forecasting

Use isolated inheritance rules to retain historical information in financial markets, enhancing prediction accuracy.

Abstract

Memory-based evolutionary algorithms for dynamic optimization often carry a redundant second copy of the genotype and expose only one copy to the objective, on the assumption that the shielded copy accumulates information about past optima. We show this assumption is false as usually implemented, and identify the structural property that actually determines whether the shielded copy retains information. We formalize such methods as a gated dual-copy representation with two independent design axes: a gating rule deciding which copy is evaluated, and an inheritance rule deciding whether the two copies mix across generations. A ablation shows retained information is governed almost entirely by the inheritance rule (21.4 vs. 1.3 bits) and is nearly invariant to the gating rule. Per-locus independent inheritance reshuffles cross-locus structure every generation, so shielding preserves the variance of the hidden copy while destroying the pattern that constitutes a memory. Under isolated inheritance the memory effect is real: against a single-copy baseline matched for representation budget, the method gains +0.010 AUC when optima recur periodically and loses 0.078 when they drift unidirectionally---a 0.089 separation under otherwise identical settings, which excludes explanations based on added capacity. We show the readout rate is also the corruption rate, predicting and confirming an interior optimum replicated across two implementations. We report one negative result with a mechanism: dual-copy representations lower the mutational error threshold, because gated expression is a selector rather than a joint decoder and therefore provides no coding gain. Finally, we document a benchmarking hazard: on dynamic benchmarks the choice of recombination operator alone shifted our baseline by 0.062 AUC, six times the effect size under study.

cs.NE