REVIEW 3 major objections 7 minor 52 references
When Does Neuroevolution Outcompete Reinforcement Learning in Transfer Learning Tasks?
T0 review · 3 major / 7 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read On curriculum-based transfer tasks, direct-encoding neuroevolution, especially NEAT, outperforms PPO and goal-conditioned PPO.
desk verdict Useful benchmarks and an honest head-to-head, but the abstract overclaims 'curriculum' and the transfer story needs a from-scratch control. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the curriculum plus the genotype-to-phenotype map. Each benchmark forces the agent to solve levels in order, with later levels composed of earlier ones: N-parity adds one bit per level, the Simple ALU requires emulating all earlier logic operations, the maze requires visiting stepping stones in sequence, and the obstacle task raises obstacle height level by level. NEAT's incremental topology growth lets early solutions persist and be extended, while PPO's gradient updates overwrite them when the task changes; the paper's ablations show NEAT degrades without a curriculum and PPO improves. The benchmarks make this contrast measurable and reproducible, with stepping gates reducing transfer to logic-circuit composition and ecorobot adding physical continuity to the same idea.
What would settle it
Train PPO directly on the final level of the stepping-stones maze (food reward only, no stones) and on the highest obstacle height, and compare wall-clock time and sample count to NEAT's curriculum-trained runs; if PPO solves the final level with comparable or better efficiency, then NEAT's apparent transfer advantage is not about transferring skills but about curriculum placement.
Extended reading notes
Core claim
The paper's central claim is that on tasks decomposed into a curriculum, direct-encoding neuroevolution frequently outperforms strong reinforcement learning baselines. In the stepping-gates benchmark, NEAT solves the N-parity curriculum while PPO reaches only the first level, and the Simple ALU shows the same pattern; the ablation that skips the curriculum lets PPO solve 6-parity directly, which the authors take to mean PPO's failure is an inability to progress through non-stationary levels rather than a capacity limit. In the ecorobot stepping-stones maze, NEAT crosses on average five of seven stones while PPO and goal-conditioned PPO stop at the first. The authors also claim the transfer advantage is specific to direct encodings: HyperNEAT, the indirect encoding, loses its edge and instead avoids local optima that trap PPO, while MAP-Elites explores the whole maze but fails to collect stones in order.
Load-bearing premise
The conclusion assumes that passing later levels in these benchmarks actually requires skills carried over from earlier levels, rather than being re-solved from scratch within each level; if later levels are learnable independently with the same effort, the transfer story does not follow.
Editorial extensions
If this is right
- On curriculum-shaped tasks, NEAT and CMA-ES become a better default than PPO, with NEAT reaching five of seven stepping stones where PPO stalls at the first.
- Choosing a neuroevolution encoding trades transfer for exploration: direct encodings transfer skills, while the indirect HyperNEAT escapes local optima but fails to build on earlier levels.
- Removing the curriculum flips the comparison: PPO solves 6-parity directly, while NEAT's performance degrades slightly, so the curriculum is what separates the methods.
- The transfer advantage does not yet scale: swapping SimpleRob for the ant in the stepping-stones maze makes NEAT stop at the first stone, so complex morphology remains an open problem.
Reading between the lines
- One implication the paper leaves implicit: NEAT's advantage may come from preserving early modules in its evolving genome, so a direct test would be to inspect whether the networks that solve later levels literally contain the sub-circuits from earlier ones.
- A testable extension: apply the same curriculum logic to non-policy domains, such as incremental language tasks or multi-step tool use, where PPO is not the dominant baseline; if NEAT still wins, the effect is not about control tasks but about curricula generally.
- The HyperNEAT result suggests a natural hybrid: use an indirect encoding to jump out of local optima, then switch to a direct encoding to accumulate the discovered skills; the paper hints at this in its discussion of evo-devo but does not test it.
- The benchmarks could serve as a standard measurement axis separating 'transfer under curriculum' from 'deception' and 'locomotion', which are currently conflated in many NE evaluations.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper studies whether neuroevolution (NE) can outperform reinforcement learning (RL) on transfer-learning tasks by introducing two new benchmarks: 'stepping gates' (partiy and a simple ALU with progressively harder levels) and 'ecorobot' (a Brax-based environment with maze navigation and obstacle crossing). The authors compare NEAT, HyperNEAT, CMA-ES, MAP-Elites, PPO, and goal-conditioned PPO across these benchmarks with 10 trials per condition and non-parametric significance tests. The main findings are that direct-encoding NE methods, particularly NEAT, tend to solve more curriculum levels than PPO when curricula are present, while indirect encodings such as HyperNEAT generally succeed at avoiding local optima but fail at transfer. The paper also includes ablations removing the curriculum in N-parity and obstacle-height tasks, open-source code, and a visualization website.
Significance. If the results are taken at face value, this study would provide a concrete, reproducible demonstration that certain neuroevolutionary algorithms can outperform or match PPO on curriculum-based transfer tasks, and that direct encodings with architectural search (NEAT) have an advantage over RL in such settings. The paper's strengths include: new open-sourced benchmarks in JAX, explicit p-values with non-parametric tests, 10 trials per condition, and ablations that test the effect of the curriculum. The finding that PPO can solve 6-parity from scratch yet fails on the progressive curriculum is a useful and non-obvious observation. However, the central conceptual claim that both benchmarks test 'transfer across tasks of increasing complexity' is not fully supported by the stepping-stones maze, and the absence of from-scratch controls for several final levels leaves open the possibility that some NE successes are due to re-optimization rather than skill transfer.
major comments (3)
- [Section 3.2.2, 'Maze with stepping stones'] The paper describes this task as one of the two ecorobot tasks 'specifically designed to test for transfer learning,' and the abstract claims that 'crucial in both benchmarks is the presence of a curriculum that enables evaluating skill transfer across tasks of increasing complexity.' However, the stepping-stones maze is a single maze with a shaped reward that progresses through a sequence of stones within one episode; it contains no separate tasks or levels of increasing difficulty. Thus the success in Figure 5, where NEAT reaches on average five of seven stones, does not by itself constitute evidence of cross-task transfer. To support the transfer framing, the authors need either to provide a from-scratch control on later stones (e.g., train directly on the final sub-goal or on a task that starts at stone k) or to reframe this experiment as testing long-horizon credit assignment or sub-goal sequencing, not transfer.
- [Sections 5.1 and 5.2.1, from-scratch controls] The central claim that NEAT and CMA-ES 'transfer' skills across levels is not established for the Simple ALU and the hierarchical-obstacles tasks because no from-scratch control is reported for the final levels of these tasks for those methods. The N-parity ablation in Figure 4 is a good example of the needed control: it shows NEAT degrades when trained directly on 6-parity, indicating the curriculum helps it. But no analogous ablation is shown for Simple ALU or for the full hierarchical-obstacles final level; Figure 8 compares NEAT and PPO on medium- and high-difficulty versions with all obstacles at the same height, which is not the same as the final level of the curriculum (where obstacles have increasing heights). Since CMA-ES uses a fixed topology and no explicit memory mechanism yet solves all N-parity levels, it is plausible that it re-optimizes each level from scratch; the paper needs a control that distinguishes re-optimization from transfer, or it should temper the 'transfer abilities' language.
- [Section 4, hyperparameter tuning] The tuning protocol is asymmetric across methods: NEAT and HyperNEAT were tuned only on the 6-parity task, PPO and goal-conditioned PPO were tuned independently for stepping-gates and ecorobot, CMA-ES used defaults from evosax, and MAP-Elites used hyperparameters from a previous study. This asymmetry is a potential confound for the headline claim that 'NE methods ... frequently outperform RL baselines,' because the RL baselines received task-specific tuning while the NE methods did not. While the direction of the bias may in fact favor PPO, the paper does not quantify how sensitive the rankings are to the tuning budget. The authors should either run a small sensitivity analysis with additional configurations for CMA-ES and NEAT on the ecorobot tasks, or explicitly discuss the likely direction and magnitude of this bias in the limitations.
minor comments (7)
- [Figure 4 and text in Section 5.1] The phrase 'NEAT's performance degrades slightly' is vague; please report the actual success percentages for NEAT on 6-parity with and without the curriculum, and add error bars or confidence intervals to Figure 4.
- [Section 3.2.2, 'Hierarchical obstacles'] It is not clear how the curriculum is implemented for this task: does the agent train on level 1, then level 2 with level 1 still present, or does the task reset each level? Please specify the training protocol and the exact episode composition, since this is central to the transfer interpretation.
- [Section 5.2.1] The claim that PPO 'has not learned to adjust its behavior to obstacles of varying size but to ignore them' is based on visual inspection of trajectories. Please provide a quantitative measure (e.g., number of flips, bumpiness metric, obstacle-clearing rate) to support this statement.
- [Appendix A.5] The sentence 'We report all relevant hyperparameters in Appendix 5' should refer to the actual appendix/table number (e.g., 'Table 5' or 'Appendix A.5').
- [References] References [38] and [39] are both the same PPO paper (Schulman et al., 2017); please consolidate them into a single entry.
- [Abstract and Section 4] The abstract says 'Both methods exhibit sub-par transfer learning abilities' about PPO and goal-conditioned PPO, but goal-conditioned PPO is only evaluated in ecorobot, not in stepping gates. Please state in the methods/results where each RL variant is evaluated, or adjust the wording.
- [Introduction] The phrase 'a rather concrete flair of transfer learning' appears to be a typo for 'flavor'; please correct it.
Circularity Check
No circularity: the paper is an empirical benchmark comparison and its central claims are measured, not derived from fitted parameters or self-citation chains.
full rationale
The paper's central claim—that direct-encoding neuroevolution methods, especially NEAT, frequently outperform PPO and goal-conditioned PPO on curriculum-based transfer tasks—is supported by direct experimental measurements on newly introduced benchmarks. There is no derivation chain in which an output quantity is defined in terms of the target result. Hyperparameters for NEAT, HyperNEAT, PPO, and goal-conditioned PPO were tuned on a single task (6-parity or locomotion with the ant) and then evaluated on different tasks or levels; this is an upstream tuning choice, not a fitted parameter renamed as a prediction. The ablations that remove the curriculum (direct 6-parity and fixed-obstacle-height tasks) are genuine control experiments rather than circular re-statements of the conclusion. The paper does cite work by its own authors (e.g., [32], [36], [35]), but these citations appear in background discussion about indirect encodings and neuroevolution generally, and they are not load-bearing for the empirical comparisons that constitute the main finding. The statement that a curriculum is 'crucial in both benchmarks' is a design description of the benchmarks, not a conclusion derived from the benchmarks. No equation is shown to equal another by construction, and no prediction is forced by the inputs. The most appropriate finding is no significant circularity.
Assumptions & free parameters
free parameters (5)
- NEAT population size =
5000 (1024 in ecorobot)
- PPO network architecture =
6x4 neurons (stepping gates), 4x32 neurons (ecorobot)
- CMA-ES network and defaults =
24 hidden neurons, evosax defaults
- MAP-Elites grid =
50-by-50 tiles
- HyperNEAT substrate layout =
single hidden layer, 32 hidden neurons
assumptions (3)
- domain assumption The stepping-gates and ecorobot curricula validly measure transfer of learned skills across levels.
- domain assumption The RL baselines are reasonably strong representatives of current RL for these tasks.
- domain assumption Ten random trials per condition support the reported statistical comparisons.
Cite this review
Pith. "Pith review of When Does Neuroevolution Outcompete Reinforcement Learning in Transfer Learning Tasks?." pith.science (2026). https://pith.science/paper/DZ7ZBGHQ
@misc{pith2026250522696,
author = {Pith},
title = {Pith review of: When Does Neuroevolution Outcompete Reinforcement Learning in Transfer Learning Tasks?},
year = {2026},
howpublished = {\url{https://pith.science/paper/DZ7ZBGHQ}},
note = {Machine review of arXiv:2505.22696}
}
read the original abstract
The ability to continuously and efficiently transfer skills across tasks is a hallmark of biological intelligence and a long-standing goal in artificial systems. Reinforcement learning (RL), a dominant paradigm for learning in high-dimensional control tasks, is known to suffer from brittleness to task variations and catastrophic forgetting. Neuroevolution (NE) has recently gained attention for its robustness, scalability, and capacity to escape local optima. In this paper, we investigate an understudied dimension of NE: its transfer learning capabilities. To this end, we introduce two benchmarks: a) in stepping gates, neural networks are tasked with emulating logic circuits, with designs that emphasize modular repetition and variation b) ecorobot extends the Brax physics engine with objects such as walls and obstacles and the ability to easily switch between different robotic morphologies. Crucial in both benchmarks is the presence of a curriculum that enables evaluating skill transfer across tasks of increasing complexity. Our empirical analysis shows that NE methods vary in their transfer abilities and frequently outperform RL baselines. Our findings support the potential of NE as a foundation for building more adaptable agents and highlight future challenges for scaling NE to complex, real-world problems.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Yoshua Bengio, Jérôme Louradour, Ronan Collobert, and Jason Weston. 2009. Curriculum learning. In Proceedings of the 26th annual international conference on machine learning. 41–48
2009
-
[2]
Felix Chalumeau, Raphael Boige, Bryan Lim, Valentin Macé, Maxime Allard, Arthur Flajolet, Antoine Cully, and Thomas Pierrot. 2023. Neuroevolution is a Competitive Alternative to Reinforcement Learning for Skill Discovery. https: //doi.org/10.48550/arXiv.2210.03516 arXiv:2210.03516 [cs]
-
[3]
Felix Chalumeau, Bryan Lim, Raphael Boige, Maxime Allard, Luca Grillotti, Manon Flageat, Valentin Macé, Guillaume Richard, Arthur Flajolet, Thomas Pierrot, et al. 2024. Qdax: A library for quality-diversity and population-based algorithms with hardware acceleration. Journal of Machine Learning Research 25, 108 (2024), 1–16
work page 2024
-
[4]
Paul Cisek. 2019. Resynthesizing behavior through phylogenetic refinement. Attention, Perception, & Psychophysics 81, 7 (Oct. 2019), 2265–2287. https://doi. org/10.3758/s13414-019-01760-1
-
[5]
Cédric Colas, Tristan Karch, Olivier Sigaud, and Pierre-Yves Oudeyer. 2022. Autotelic Agents with Intrinsically Motivated Goal-Conditioned Reinforce- ment Learning: a Short Survey. https://doi.org/10.48550/arXiv.2012.09830 arXiv:2012.09830 [cs]
-
[6]
Matthew Crosby, Benjamin Beyret, and Marta Halina. 2019. The Animal-AI Olympics. Nature Machine Intelligence 1, 5 (May 2019), 257–257. https://doi.org/ 10.1038/s42256-019-0050-3 Publisher: Nature Publishing Group
-
[7]
Adrien Ecoffet, Joost Huizinga, Joel Lehman, Kenneth O. Stanley, and Jeff Clune
-
[8]
Kai Olav Ellefsen, Jean-Baptiste Mouret, and Jeff Clune. 2015. Neural Modularity Helps Organisms Evolve to Learn New Skills without Forgetting Old Skills.PLOS When Does Neuroevolution Outcompete Reinforcement Learning in Transfer Learning Tasks? Computational Biology 11, 4 (April 2015), e1004128. https://doi.org/10.1371/ journal.pcbi.1004128
work page 2015
Show all 52 references
- [9]
-
[10]
Daniel Freeman, Erik Frey, Anton Raichuk, Sertan Girgin, Igor Mordatch, and Olivier Bachem
C. Daniel Freeman, Erik Frey, Anton Raichuk, Sertan Girgin, Igor Mordatch, and Olivier Bachem. 2021. Brax – A Differentiable Physics Engine for Large Scale Rigid Body Simulation. https://doi.org/10.48550/arXiv.2106.13281 arXiv:2106.13281 [cs]
-
[11]
Greenbury, Ard A
Sam F. Greenbury, Ard A. Louis, and Sebastian E. Ahnert. 2022. The structure of genotype-phenotype maps makes fitness landscapes navigable. Nature Ecology & Evolution 6, 11 (Nov. 2022), 1742–1752. https://doi.org/10.1038/s41559-022- 01867-z Publisher: Nature Publishing Group
2022 doi
-
[12]
Luca Grillotti and Antoine Cully. 2023. Kheperax: a Lightweight JAX-based Robot Control Environment for Benchmarking Quality-Diversity Algorithms. In Proceedings of the Companion Conference on Genetic and Evolutionary Computa- tion (GECCO ’23 Companion) . Association for Compu...
2023
-
[13]
F. Gruau. 1992. Genetic synthesis of Boolean neural networks with a cell rewrit- ing developmental process. In [Proceedings] COGANN-92: International Work- shop on Combinations of Genetic Algorithms and Neural Networks . IEEE Comput. Soc. Press, Baltimore, MD, USA, 55–74. http...
1992 doi
-
[14]
Frédéric Gruau. 1994. Automatic Definition of Modular Neural Networks. Adaptive Behavior 3, 2 (Sept. 1994), 151–183. https://doi.org/10.1177/ 105971239400300202
1994
- [15]
- [16]
-
[17]
Leslie Pack Kaelbling. 1993. Learning to achieve goals. In IJCAI, Vol. 2. Citeseer, 1094–1098. https://citeseerx.ist.psu.edu/document?repid=rep1&type=pdf&doi= 6df43f70f383007a946448122b75918e3a9d6682
1993
- [18]
- [19]
-
[20]
Knoll and Sean B
Andrew H. Knoll and Sean B. Carroll. 1999. Early Animal Evolution: Emerging Views from Comparative Biology and Geology. Science 284, 5423 (June 1999), 2129–2137. https://doi.org/10.1126/science.284.5423.2129
1999
-
[21]
Koza and J.P
J.R. Koza and J.P. Rice. 1991. Genetic generation of both the weights and ar- chitecture for a neural network. In IJCNN-91-Seattle International Joint Con- ference on Neural Networks , Vol. ii. IEEE, Seattle, WA, USA, 397–404. https: //doi.org/10.1109/IJCNN.1991.155366
1991
-
[22]
Koza and J.P
J.R. Koza and J.P. Rice. 1992. Genetic Programming. https://mitpress.mit.edu/ 9780262527910/genetic-programming/
1992
-
[23]
John R Koza. [n. d.]. genetic programming: a paradigm for genetically breeding populations of computer programs to solve problems. ([n. d.])
-
[24]
Robert Tjarko Lange. 2022. evosax: JAX-based Evolution Strategies. arXiv preprint arXiv:2212.04180 (2022)
2022 arXiv
-
[25]
Joel Lehman and Kenneth O. Stanley. 2011. Abandoning Objectives: Evolution Through the Search for Novelty Alone. Evolutionary Computation 19, 2 (June 2011), 189–223. https://doi.org/10.1162/EVCO_a_00025
2011 doi
- [26]
- [27]
- [28]
-
[29]
Moriarty and Risto Miikkulainen
David E. Moriarty and Risto Miikkulainen. 1996. Efficient reinforcement learning through symbiotic evolution. Machine Learning 22, 1 (March 1996), 11–32. https://doi.org/10.1007/BF00114722
1996 doi
-
[30]
Jean-Baptiste Mouret and Jeff Clune. 2015. Illuminating search spaces by mapping elites. arXiv preprint arXiv:1504.04909 (2015)
2015 arXiv
-
[31]
Elias Najarro, Shyam Sudhakaran, Claire Glanois, and Sebastian Risi. 2022. Hy- perNCA: Growing Developmental Networks with Neural Cellular Automata. http://arxiv.org/abs/2204.11674 arXiv:2204.11674 [cs]
2022 arXiv
-
[32]
Eleni Nisioti, Erwan Plantec, Milton Montero, Joachim Pedersen, and Sebastian Risi. 2024. Growing Artificial Neural Networks for Control: the Role of Neuronal Diversity. In Proceedings of the Genetic and Evolutionary Computation Conference Companion. ACM, Melbourne VIC Austral...
2024
-
[33]
NeuroEvolution of Augmenting Topologies
Evgenia Papavasileiou, Jan Cornelis, and Bart Jansen. 2021. A Systematic Litera- ture Review of the Successors of “NeuroEvolution of Augmenting Topologies”. Evolutionary Computation 29, 1 (March 2021), 1–73. https://doi.org/10.1162/ evco_a_00282
2021
-
[34]
Pugh, Lisa B
Justin K. Pugh, Lisa B. Soros, and Kenneth O. Stanley. 2016. Quality Diversity: A New Frontier for Evolutionary Computation. Frontiers in Robotics and AI 3 (July 2016). https://doi.org/10.3389/frobt.2016.00040 Publisher: Frontiers
2016
-
[35]
Sebastian Risi, David Ha, Yujin Tang, and Risto Miikkulainen. 2025. Neuroevo- lution: Harnessing Creativity in AI Model Design . MIT Press, Cambridge, MA. http://www.cs.utexas.edu/users/ai-lab?risi:book25
2025
-
[36]
Sebastian Risi, Joel Lehman, and Kenneth O. Stanley. 2010. Evolving the place- ment and density of neurons in the hyperneat substrate. In Proceedings of the 12th annual conference on Genetic and evolutionary computation (GECCO ’10). Association for Computing Machinery, New Yor...
2010
- [37]
-
[39]
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov
-
[40]
Sergey Shuvaev, Divyansha Lachi, Alexei Koulakov, and Anthony Zador. 2024. Encoding innate ability through a genomic bottleneck.Proceedings of the National Academy of Sciences 121, 38 (Sept. 2024), e2409160121. https://doi.org/10.1073/ pnas.2409160121 Publisher: Proceedings of...
2024
-
[41]
Stanley, Jeff Clune, Joel Lehman, and Risto Miikkulainen
Kenneth O. Stanley, Jeff Clune, Joel Lehman, and Risto Miikkulainen. 2019. De- signing neural networks through neuroevolution. Nature Machine Intelligence 1, 1 (Jan. 2019), 24–35. https://doi.org/10.1038/s42256-018-0006-z Publisher: Nature Publishing Group
2019 doi
-
[42]
arXiv:1707.06347 [cs.LG] https://arxiv.org/abs/1707.06347
Proximal Policy Optimization Algorithms. arXiv:1707.06347 [cs.LG] https://arxiv.org/abs/1707.06347
-
[43]
Stanley and Risto Miikkulainen
Kenneth O. Stanley and Risto Miikkulainen. 2002. Evolving Neural Networks through Augmenting Topologies. Evolutionary Computation 10, 2 (June 2002), 99–127. https://doi.org/10.1162/106365602320169811
2002 doi
-
[44]
Stanley and Risto Miikkulainen
Kenneth O. Stanley and Risto Miikkulainen. 2003. A Taxonomy for Artificial Embryogeny. Artificial Life 9, 2 (April 2003), 93–130. https://doi.org/10.1162/ 106454603322221487
2003
-
[45]
Stanley, David B
Kenneth O. Stanley, David B. D’Ambrosio, and Jason Gauci. 2009. A Hypercube- Based Encoding for Evolving Large-Scale Neural Networks. Artificial Life 15, 2 (April 2009), 185–212. https://doi.org/10.1162/artl.2009.15.2.15202 Conference Name: Artificial Life
2009 doi
-
[46]
Matthew E Taylor and Peter Stone. [n. d.]. Transfer Learning for Reinforcement Learning Domains: A Survey. ([n. d.])
-
[47]
Thomson, Léni Le Goff, Emma Hart, and Edgar Buchanan
Sarah L. Thomson, Léni Le Goff, Emma Hart, and Edgar Buchanan. 2024. Under- standing Fitness Landscapes in Morpho-Evolution via Local Optima Networks. In Proceedings of the Genetic and Evolutionary Computation Conference . ACM, Melbourne VIC Australia, 114–123. https://doi.org...
2024
-
[48]
Stanley, and Jeff Clune
Felipe Petroski Such, Vashisht Madhavan, Edoardo Conti, Joel Lehman, Ken- neth O. Stanley, and Jeff Clune. 2018. Deep Neuroevolution: Genetic Algorithms Are a Competitive Alternative for Training Deep Neural Networks for Reinforce- ment Learning. https://doi.org/10.48550/arXiv...
-
[49]
Konstantinos Voudouris, Matthew Crosby, Benjamin Beyret, José Hernández- Orallo, Murray Shanahan, Marta Halina, and Lucy G. Cheke. 2022. Direct Human- AI Comparison in the Animal-AI Environment. Frontiers in Psychology 13 (May 2022). https://doi.org/10.3389/fpsyg.2022.711821 P...
2022
-
[50]
Lishuang Wang, Mengfei Zhao, Enyu Liu, Kebin Sun, and Ran Cheng. 2024. Tensorized NeuroEvolution of Augmenting Topologies for GPU Acceleration. In Proceedings of the Genetic and Evolutionary Computation Conference (GECCO ’24). Association for Computing Machinery, New York, NY,...
2024
- [51]
- [2017]
-
[2021]
Nature 590, 7847 (Feb
First return, then explore. Nature 590, 7847 (Feb. 2021), 580–586. https: //doi.org/10.1038/s41586-020-03157-9 Publisher: Nature Publishing Group
2021 doi
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.