REVIEW 4 major objections 5 minor 48 references
Scaling Policy Gradient Quality-Diversity with Massive Parallelization via Behavioral Variations
T0 review · 4 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read ASCII-ME shows that a critic-free policy-gradient operator can make MAP-Elites fast and parallel-friendly for deep-network policies.
desk verdict Genuinely new non-AC PG variation operator with strong empirical speedups, but the update rule's theoretical basis is shaky and the code is withheld. 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 object is the performance-based weight matrix $\boldsymbol{Z}_{\boldsymbol{x}_i,\boldsymbol{x}_j} = \mathrm{diag}(z_0(\boldsymbol{x}_i,\boldsymbol{x}_j)\boldsymbol{I}, \ldots, z_{H-1}(\boldsymbol{x}_i,\boldsymbol{x}_j)\boldsymbol{I})$ from Eq. (10). It decides, at every time step, how strongly the parent's action should be pulled toward the target's action: the pull is strong when the target's reward-to-go is higher, the states are similar, and the actions are close, and it is zeroed out by the clipping rule when the parent is already outperforming the target and the actions diverge. The transpose Jacobian $\boldsymbol{J}_{\boldsymbol{x}_i}^T$ then maps this action-space change back to the genotype. Together these pieces replace the trained critic that other policy-gradient QD methods need.
What would settle it
Run ASCII-ME on a locomotion task while injecting a state-distribution shift: make the target policy's evaluation start from states with systematically higher rewards (e.g., downhill or closer to a reward source) while its actions are known to be worse. If ASCII still pulls the parent's actions toward the target's, the reward-to-go comparison is being driven by state luck. A more direct version: at each time step, estimate the true advantage of the target action over the parent action at the same state, and check whether the sign of that advantage agrees with the sign of the weighted $\Delta G_t$; chance-level agreement would falsify the mechanism.
Extended reading notes
Core claim
At the center of the paper is a new operator, ASCII (Action Sequence Crossover with performance-Informed Interpolation), integrated into MAP-Elites as ASCII-ME. For a parent policy with genotype $\boldsymbol{x}_i$ and a target policy sampled from a buffer, ASCII first computes the imaginary actions the parent would take along the target's states, $\tilde{\boldsymbol{a}}_t = \boldsymbol{\mu}_{\boldsymbol{x}_i}(\boldsymbol{s}^j_t)$, and compares them with the target's actual actions $\boldsymbol{a}^j_t$. A per-time-step weight $z_t$ combines the reward-to-go advantage $\Delta G_t = G^j_t - G^i_t$ with a cosine similarity between states, a squared-exponential action kernel, and a PPO-like clipping gate; the parent genotype is then moved by $\boldsymbol{x}'_i = \boldsymbol{x}_i + \lambda_2 \sum_t z_t(\boldsymbol{a}^j_t - \tilde{\boldsymbol{a}}^i_t) \nabla_{\boldsymbol{x}} \boldsymbol{\mu}_{\boldsymbol{x}}(\boldsymbol{s}^j_t)|_{\boldsymbol{x}_i}$. The claim is that this mechanism substitutes for a critic: it uses the time-step structure of the MDP directly and can be computed in parallel for an entire evaluation batch, so ASCII-ME maintains competitive sample efficiency while scaling to large batch sizes.
Load-bearing premise
The load-bearing premise is that the reward-to-go difference between two policies at the same time step, after the cosine and kernel corrections, indicates which policy's action is better at that step; this can fail because the two rewards-to-go are gathered from different state distributions, so a higher value may reflect a luckier or systematically different state rather than a superior action.
Editorial extensions
If this is right
- On Hopper Uni and Walker Uni, with a one-million-evaluation budget, ASCII-ME reports a 25% higher archive-quality metric than DCRL-ME while running, on average, about five times faster.
- Under larger parallel evaluation batches, ASCII-ME's final performance stays nearly flat (mean coefficient of variation around 2% across tasks), whereas the actor-critic baselines degrade (mean CVs of 13% and 8%), so its speed can be scaled up without retuning.
- On the omnidirectional tasks, ASCII-ME reaches 100% descriptor coverage even though it does not use descriptor information, and the 0%-Iso+LineDD variant finds no solutions, indicating the ASCII operator carries the search in those tasks.
- A 50/50 mix of ASCII and Iso+LineDD is the most robust configuration; replacing either operator entirely lowers average performance.
- The paper also notes a boundary: on Ant Uni, the largest task, ASCII-ME's maximum fitness is lower than the actor-critic baselines, and it attributes this to critics making more accurate performance estimates than its direct reward-to-go comparison.
Reading between the lines
- Editorial inference: Because the reward-to-go comparison is used directly, replacing the cosine and kernel corrections with an explicit state-distribution correction would be the natural next test; if it improves ASCII-ME on large state/action spaces, it would confirm that trajectory-comparability is the limiting factor.
- Editorial inference: ASCII-ME's batch-size stability should carry over to other archive-based QD designs as a plug-in operator, since it has no critic update schedule tied to iteration count; a concrete prediction is that descriptor-conditioned archives would retain the scaling behavior.
- Editorial inference: The buffer's low-quality trajectories help rather than hurt, which suggests that ASCII benefits from broad state-action coverage, not just elite states; combining ASCII with novelty- or coverage-based sampling from the buffer may improve sample efficiency further.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces ASCII-ME, a MAP-Elites variant for neuroevolution that replaces part of the genetic mutation operator with a new operator, ASCII. ASCII interpolates between two action sequences, weighting the interpolation at each time step by a reward-to-go difference, a cosine state-similarity term, and an action kernel, and then maps the action-space change to the genotype space via the transpose of the policy Jacobian. The authors claim that this yields a policy-gradient-based, non-actor-critic variation operator that scales with massive parallelization, and they report experiments on five Brax locomotion tasks showing that ASCII-ME achieves competitive or better QD scores than PGA-ME, DCRL-ME, MEMES, PPGA, and MAP-Elites, while being substantially faster and more robust to batch-size increases.
Significance. If the empirical results hold, ASCII-ME is a practically valuable addition to the QD-RL toolbox: it offers a simple, parallelizable, non-AC alternative to current gradient-based QD operators, with strong runtime and sample-efficiency numbers, and it is evaluated with 20 seeds, Holm-Bonferroni-corrected p-values, and a careful batch-size analysis. The paper also provides a useful study of operator synergy and of how AC-based baselines degrade under massive parallelization. However, the theoretical framing of ASCII as a policy-gradient operator is not well supported: the central performance signal in Eq. (11) compares rewards-to-go from different state distributions, and the Jacobian-transpose mapping is a heuristic, so the paper's central claim of a principled non-AC policy-gradient operator is not established.
major comments (4)
- [Section 3.3.1, Eq. (11)] The core signal ΔG_t = G^j_t − G^i_t is not a valid action-advantage estimate. G^i_t is the return collected under the mutated policy's own trajectory from state s^i_t, not the return of the action ã_t = μ_i(s^j_t) evaluated at the target policy's state s^j_t. The cosine similarity in Eq. (12) is nonnegative after the max with b and thus can only rescale ΔG_t, not correct for the state mismatch. Consequently, β_t in Eq. (14), and therefore the weight z_t, can have the wrong sign or magnitude whenever the two state sequences differ, which is the generic case. The paper itself acknowledges this in Section 3.3.2 ('To address this discrepancy') and Section 3.3.3 ('To mitigate the inaccuracy'), but the remaining correction is heuristic. The claim in Section 1 and Section 5 that ASCII is a policy-gradient-based operator is therefore not justified by the presented derivation.
- [Section 3.2.2, Eq. (6), and Algorithm 1 (ASCII function)] The mapping from action-space changes to genotype changes uses the transpose of the policy Jacobian rather than a proper inverse, so the intended action-space variation is generally not realized. This would be acceptable as a heuristic if it were presented as such, but the paper presents it as the mechanism that 'maps these behavioral changes into the solution space' (Section 1). Moreover, the ASCII loop iterates e=32 times on the same genotype (Algorithm 1), but the archived states and rewards-to-go (s^i_t, G^i_t) are those of the original genotype when it entered the archive; after the first inner update, the Jacobian is evaluated for a policy whose stored trajectory data are stale. This means the repeated Jacobian steps do not correspond to repeated valid policy-gradient steps, and the effect of e on performance is not isolated in any experiment.
- [Section 4.4 and Table 3] The optimal batch size for each algorithm is selected using an efficiency score computed from the very same runs that are then used to report the main results in Section 4.5.1. This is a form of selection bias: the comparison is not made at a fixed, pre-specified configuration but at the configuration that maximizes each algorithm's own efficiency-score on the test tasks. For ASCII-ME, the selected batch size (4096) yields noticeably better efficiency scores than the smaller sizes (Table 3), so part of the reported five-times-faster and 25%-higher-QD claims may reflect tuning to the benchmarks rather than an intrinsic advantage. The authors should either report results for a fixed batch size across all algorithms, use a validation set for batch-size selection, or explicitly discuss the optimism introduced by this selection procedure.
- [Section 4.5.2 and Appendix A.3] The scalability analysis for AC-based baselines considers three actor-critic training strategies and selects strategy 3 based on the efficiency score, again using the same benchmark runs. This is a reasonable practical choice, but it conflates algorithmic scalability with hyperparameter adjustment. The conclusion that 'ASCII-ME offers straightforward scalability' (Section 4.5.2) is fair, but the claim that AC-based methods 'cannot' scale without performance loss is too strong given that only one of three tested strategies is reported in the main comparison, and the other strategies were aborted on some tasks due to computational cost. A more balanced statement would acknowledge that strategy 1 and 2 achieved higher QD scores in some cases.
minor comments (5)
- [Algorithm 1] The pseudocode has a type mismatch: the call `addition(ˆx_i, X, B)` on line 5 does not match the function signature `function addition(X, B, ˆx_i)` defined on line 8. Also, the notation `trajectory𝒙𝒋` in the ASCII function is not defined; it should be clear that this is the trajectory sampled from the buffer B.
- [Table 4] Several hyperparameters are listed without a clear mapping to the symbols in the main text: for example, 'Noise variance σ²=4' seems to be the action kernel variance, but the text in Section 3.3.3 uses σ² without connecting it to this table value. Please add explicit cross-references.
- [Figure 2, caption] The caption says 'Checkpoints show the number of evaluations completed by each algorithm at that point,' but it is not obvious which markers correspond to which checkpoint values; please make the checkpoints explicit or add annotations to the curves.
- [Section 4.5.2] The coefficient-of-variation values (2% and 3% for ASCII-ME and ME) are reported as means across tasks, but the distribution of CVs across tasks and seeds is not shown; a small table or a sentence with the range would make the claim about stability more informative.
- [Conclusion, Section 5] The paper states that ASCII-ME is 'the first policy gradient based QD algorithm to operate independently of actor-critic methods.' This is a strong novelty claim that would benefit from a more precise definition of 'policy gradient' in this context, since the ASCII update is not obtained by differentiating a scalar objective with respect to the policy parameters in the standard REINFORCE sense.
Circularity Check
No meaningful circularity: the ASCII update is self-contained and independently evaluated; the main risks are state-mismatch validity and test-set tuning, not circularity.
full rationale
ASCII-ME's update rule (Eqs. 5-15) uses time-step reward-to-go differences between a mutated policy and a target policy, scaled by cosine similarity and an action kernel, then maps the resulting action-sequence change to the genotype via the policy Jacobian. Nothing in these equations is defined in terms of the QD score, coverage, or archive inclusion that the experiments report; offspring are evaluated independently and only then compete for archive cells. No parameter is fitted to the reported QD score and then reported as a prediction; the batch-size selection in Sec. 4.4 uses an efficiency score on the same benchmark, which is a selection-bias concern rather than a circular derivation. The heavy citation of the authors' own QDax/DCRL-ME/MEMES infrastructure is used as benchmark comparison and related work, not as an unverified premise that forces the conclusion. The main methodological vulnerability—Eq. 11 compares rewards-to-go from mismatched state distributions and Eq. 6 uses J^T rather than an inverse—is a correctness/threat-to-validity issue, not circularity, because the update does not presuppose the reported outcome. No self-definitional, fitted-input-as-prediction, self-citation-load-bearing, uniqueness-import, or renamed-ansatz pattern is present. Score 1 due only to the omnipresence of the authors' own prior benchmarks and the tuning-on-test-set caveat, neither of which is load-bearing.
Assumptions & free parameters
free parameters (6)
- lambda_2 step size =
alpha/(H*sigma^2), alpha=3e-3, sigma^2=4
- cosine minimum threshold b =
0.25
- clipping ratio epsilon =
0.8
- action kernel variance sigma^2 =
4
- ASCII gradient iterations e =
32
- evaluation batch size and GA/PG split =
k=4096, k_GA=2048
assumptions (4)
- domain assumption Reward-to-go values from different trajectories are comparable at the same time step after cosine and kernel corrections.
- ad hoc to paper The transpose of the policy Jacobian is a valid inverse for mapping action-space changes to genotype changes.
- domain assumption Single-episode stored rewards-to-go are reliable enough to guide mutations.
- ad hoc to paper The e-step ASCII loop can update the policy without re-evaluating fitness or rewards-to-go between iterations.
Cite this review
Pith. "Pith review of Scaling Policy Gradient Quality-Diversity with Massive Parallelization via Behavioral Variations." pith.science (2026). https://pith.science/paper/3OHECYTO
@misc{pith2026250118723,
author = {Pith},
title = {Pith review of: Scaling Policy Gradient Quality-Diversity with Massive Parallelization via Behavioral Variations},
year = {2026},
howpublished = {\url{https://pith.science/paper/3OHECYTO}},
note = {Machine review of arXiv:2501.18723}
}
read the original abstract
Quality-Diversity optimization comprises a family of evolutionary algorithms aimed at generating a collection of diverse and high-performing solutions. MAP-Elites (ME), a notable example, is used effectively in fields like evolutionary robotics. However, the reliance of ME on random mutations from Genetic Algorithms limits its ability to evolve high-dimensional solutions. Methods proposed to overcome this include using gradient-based operators like policy gradients or natural evolution strategies. While successful at scaling ME for neuroevolution, these methods often suffer from slow training speeds, or difficulties in scaling with massive parallelization due to high computational demands or reliance on centralized actor-critic training. In this work, we introduce a fast, sample-efficient ME based algorithm capable of scaling up with massive parallelization, significantly reducing runtimes without compromising performance. Our method, ASCII-ME, unlike existing policy gradient quality-diversity methods, does not rely on centralized actor-critic training. It performs behavioral variations based on time step performance metrics and maps these variations to solutions using policy gradients. Our experiments show that ASCII-ME can generate a diverse collection of high-performing deep neural network policies in less than 250 seconds on a single GPU. Additionally, it operates on average, five times faster than state-of-the-art algorithms while still maintaining competitive sample efficiency.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
- [1]
-
[2]
Fontaine, Aleksei Petrenko, Stefanos Nikolaidis, and Gaurav Sukhatme
Sumeet Batra, Bryon Tjanaka, Matthew C. Fontaine, Aleksei Petrenko, Stefanos Nikolaidis, and Gaurav Sukhatme. 2024. Proximal Policy Gradient Arborescence for Quality Diversity Reinforcement Learning. arXiv:2305.13795 [cs.LG] https: //arxiv.org/abs/2305.13795
arXiv 2024
-
[3]
Felix Chalumeau, Bryan Lim, Raphael Boige, Maxime Allard, Luca Grillotti, Manon Flageat, Valentin Macé, Arthur Flajolet, Thomas Pierrot, and Antoine Cully. 2023. QDax: A Library for Quality-Diversity and Population-based Algorithms with Hardware Acceleration. arXiv:2308.03665 [cs.AI] https: //arxiv.org/abs/2308.03665 8
work page Pith review arXiv 2023
-
[4]
Felix Chalumeau, Thomas Pierrot, Valentin Macé, Arthur Flajolet, Karim Be- guir, Antoine Cully, and Nicolas Perrin-Gilbert. 2023. Assessing Quality- Diversity Neuro-Evolution Algorithms Performance in Hard Exploration Prob- lems. arXiv:2211.13742 [cs.NE] https://arxiv.org/abs/2211.13742
work page Pith review arXiv 2023
-
[5]
Konstantinos Chatzilygeroudis, Antoine Cully, Vassilis Vassiliades, and Jean- Baptiste Mouret. 2020. Quality-Diversity Optimization: a novel branch of sto- chastic optimization. arXiv:2012.04322 [cs.NE] https://arxiv.org/abs/2012.04322
arXiv 2020
- [6]
-
[7]
Antoine Cully, Jeff Clune, Danesh Tarapore, and Jean-Baptiste Mouret. 2015. Robots that can adapt like animals. Nature 521, 7553 (May 2015), 503–507. https://doi.org/10.1038/nature14422
-
[8]
Antoine Cully and Yiannis Demiris. 2017. Quality and Diversity Optimization: A Unifying Modular Framework. arXiv:1708.09251 [cs.NE] https://arxiv.org/abs/ 1708.09251
arXiv 2017
Show all 48 references
-
[9]
Stanley, and Jeff Clune
Adrien Ecoffet, Joost Huizinga, Joel Lehman, Kenneth O. Stanley, and Jeff Clune
-
[10]
Aaron Grattafiori et al. 2024. The Llama 3 Herd of Models. arXiv:2407.21783 [cs.AI] https://arxiv.org/abs/2407.21783
2024 arXiv
-
[11]
Maxence Faldor, Félix Chalumeau, Manon Flageat, and Antoine Cully. 2023. MAP-Elites with Descriptor-Conditioned Gradients and Archive Distillation into a Single Policy. arXiv:2303.03832 [cs.NE] https://arxiv.org/abs/2303.03832
2023 arXiv
-
[12]
Maxence Faldor, Félix Chalumeau, Manon Flageat, and Antoine Cully. 2024. Syn- ergizing Quality-Diversity with Descriptor-Conditioned Reinforcement Learning. arXiv:2401.08632 [cs.NE] https://arxiv.org/abs/2401.08632
2024 arXiv
-
[13]
Manon Flageat, Bryan Lim, and Antoine Cully. 2024. Enhancing MAP-Elites with Multiple Parallel Evolution Strategies. In Proceedings of the Genetic and Evolutionary Computation Conference (GECCO ’24) . ACM, 1082–1090. https: //doi.org/10.1145/3638529.3654089
2024
-
[14]
Smith, and Antoine Cully
Manon Flageat, Bryan Lim, Luca Grillotti, Maxime Allard, Simón C. Smith, and Antoine Cully. 2022. Benchmarking Quality-Diversity Algorithms on Neu- roevolution for Reinforcement Learning. arXiv:2211.02193 [cs.NE] https: //arxiv.org/abs/2211.02193
2022 arXiv
-
[15]
Fontaine and Stefanos Nikolaidis
Matthew C. Fontaine and Stefanos Nikolaidis. 2021. Differentiable Quality Diversity. CoRR abs/2106.03894 (2021). arXiv:2106.03894 https://arxiv.org/abs/ 2106.03894
2021 arXiv
-
[16]
Fontaine and Stefanos Nikolaidis
Matthew C. Fontaine and Stefanos Nikolaidis. 2023. Covariance Matrix Adapta- tion MAP-Annealing. arXiv:2205.10752 [cs.LG] https://arxiv.org/abs/2205.10752
2023 arXiv
-
[17]
Fontaine, Julian Togelius, Stefanos Nikolaidis, and Amy K
Matthew C. Fontaine, Julian Togelius, Stefanos Nikolaidis, and Amy K. Hoover
-
[18]
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. http://github.com/google/brax
2021
-
[19]
Scott Fujimoto, Herke van Hoof, and David Meger. 2018. Addressing Function Approximation Error in Actor-Critic Methods. CoRR abs/1802.09477 (2018). arXiv:1802.09477 http://arxiv.org/abs/1802.09477
2018 arXiv
-
[20]
Adam Gaier, Alexander Asteroth, and Jean-Baptiste Mouret. 2017. Aerodynamic Design Exploration through Surrogate-Assisted Illumination. https://doi.org/10. 2514/6.2017-3330
2017
-
[21]
Adam Gaier, Alexander Asteroth, and Jean-Baptiste Mouret. 2018. Data-efficient design exploration through surrogate-assisted illumination. Evol. Comput. 26, 3 (Sept. 2018), 381–410. https://doi.org/10.1162/evco_a_00231
2018 doi
-
[22]
Adam Gaier, Alexander Asteroth, and Jean-Baptiste Mouret. 2019. Are quality diversity algorithms better at generating stepping stones than objective-based search?. In Proceedings of the Genetic and Evolutionary Computation Conference Companion (Prague, Czech Republic) (GECCO ’...
2019 doi
-
[23]
Yannakakis
Daniele Gravina, Ahmed Khalifa, Antonios Liapis, Julian Togelius, and Geor- gios N. Yannakakis. 2019. Procedural Content Generation through Quality Diversity. In 2019 IEEE Conference on Games (CoG) . IEEE, 1–8. https://doi.org/ 10.1109/cig.2019.8848053
2019
-
[24]
Nikolaus Hansen. 2007. The CMA Evolution Strategy: A Comparing Review . Vol. 192. 75–102. https://doi.org/10.1007/3-540-32494-1_4
2007 doi
-
[25]
Vijay Konda and John Tsitsiklis. 1999. Actor-Critic Algorithms. In Advances in Neural Information Processing Systems , S. Solla, T. Leen, and K. Müller (Eds.), Vol. 12. MIT Press. https://proceedings.neurips.cc/paper_files/paper/1999/file/ 6449f44a102fde848669bdd9eb6b76fa-Paper.pdf
1999
-
[26]
Bryan Lim, Maxime Allard, Luca Grillotti, and Antoine Cully. 2022. Accelerated Quality-Diversity for Robotics through Massive Parallelism.CoRR abs/2202.01258 (2022). arXiv:2202.01258 https://arxiv.org/abs/2202.01258
2022 arXiv
-
[27]
Viktor Makoviychuk, Lukasz Wawrzyniak, Yunrong Guo, Michelle Lu, Kier Storey, Miles Macklin, David Hoeller, Nikita Rudin, Arthur Allshire, Ankur Handa, and Gavriel State. 2021. Isaac Gym: High Performance GPU-Based Physics Simulation For Robot Learning. CoRR abs/2108.10470 (20...
2021 arXiv
-
[28]
Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. 2013. Playing Atari with Deep Reinforcement Learning. http://arxiv.org/abs/1312.5602 arXiv:1312.5602 [cs]
2013 arXiv
-
[29]
Rusu, Joel Veness, Marc G
Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, ...
2015 doi
-
[30]
Jean-Baptiste Mouret and Jeff Clune. 2015. Illuminating search spaces by mapping elites. arXiv:1504.04909 [cs.AI] https://arxiv.org/abs/1504.04909
2015 arXiv
-
[31]
Olle Nilsson and Antoine Cully. 2021. Policy Gradient Assisted MAP-Elites. In The Genetic and Evolutionary Computation Conference . Lille, France. https: //doi.org/10.1145/3449639.3459304
2021
-
[32]
Thomas Pierrot, Valentin Macé, Felix Chalumeau, Arthur Flajolet, Geoffrey Cideron, Karim Beguir, Antoine Cully, Olivier Sigaud, and Nicolas Perrin-Gilbert
-
[33]
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 (2016). https://doi.org/10.3389/frobt.2016.00040
2016
-
[34]
Tim Salimans, Jonathan Ho, Xi Chen, Szymon Sidor, and Ilya Sutskever. 2017. Evolution Strategies as a Scalable Alternative to Reinforcement Learning. arXiv:1703.03864 [stat.ML] https://arxiv.org/abs/1703.03864
2017 arXiv
-
[35]
Markosyan, Manish Bhatt, Yuning Mao, Minqi Jiang, Jack Parker-Holder, Jakob Foerster, Tim Rocktäschel, and Roberta Raileanu
Mikayel Samvelyan, Sharath Chandra Raparthy, Andrei Lupu, Eric Ham- bro, Aram H. Markosyan, Manish Bhatt, Yuning Mao, Minqi Jiang, Jack Parker-Holder, Jakob Foerster, Tim Rocktäschel, and Roberta Raileanu. 2024. Rainbow Teaming: Open-Ended Generation of Diverse Adversarial Pro...
2024 arXiv
-
[36]
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov
-
[37]
Richard S Sutton, David McAllester, Satinder Singh, and Yishay Mansour. 1999. Policy Gradient Methods for Reinforcement Learning with Function Approxima- tion. In Advances in Neural Information Processing Systems , S. Solla, T. Leen, and K. Müller (Eds.), Vol. 12. MIT Press. h...
1999
-
[38]
Fontaine, David H
Bryon Tjanaka, Matthew C. Fontaine, David H. Lee, Aniruddha Kalkar, and Stefanos Nikolaidis. 2023. Training Diverse High-Dimensional Controllers by Scaling Covariance Matrix Adaptation MAP-Annealing. arXiv:2210.02622 [cs.RO] https://arxiv.org/abs/2210.02622
2023 arXiv
-
[39]
Fontaine, Julian Togelius, and Stefanos Niko- laidis
Bryon Tjanaka, Matthew C. Fontaine, Julian Togelius, and Stefanos Niko- laidis. 2022. Approximating Gradients for Differentiable Quality Diversity in Reinforcement Learning. CoRR abs/2202.03666 (2022). arXiv:2202.03666 https://arxiv.org/abs/2202.03666
2022 arXiv
-
[40]
Mark Towers, Ariel Kwiatkowski, Jordan Terry, John U Balis, Gianluca De Cola, Tristan Deleu, Manuel Goulão, Andreas Kallinteris, Markus Krimmel, Arjun KG, et al. 2024. Gymnasium: A Standard Interface for Reinforcement Learning Environments. arXiv preprint arXiv:2407.17032 (2024)
2024 arXiv
-
[41]
Vassiiis Vassiliades and Jean-Baptiste Mouret. 2018. Discovering the elite hy- pervolume by leveraging interspecies correlation. In Proceedings of the Ge- netic and Evolutionary Computation Conference (Kyoto, Japan) (GECCO ’18) . Association for Computing Machinery, New York, ...
2018
-
[42]
Daan Wierstra, Tom Schaul, Tobias Glasmachers, Yi Sun, and Jürgen Schmidhuber
-
[43]
efficiency score
Ronald J. Williams. 1992. Simple Statistical Gradient-Following Algorithms for Connectionist Reinforcement Learning. Mach. Learn. 8, 3–4 (May 1992), 229–256. https://doi.org/10.1007/BF00992696 9 A SUPPLEMENTARY MATERIALS A.1 ASCII-ME Pseudocode In this section, we provide the ...
1992 doi
-
[2011]
arXiv:1106.4487 [stat.ML] https://arxiv.org/ abs/1106.4487
Natural Evolution Strategies. arXiv:1106.4487 [stat.ML] https://arxiv.org/ abs/1106.4487
-
[2017]
CoRR abs/1707.06347 (2017)
Proximal Policy Optimization Algorithms. CoRR abs/1707.06347 (2017). arXiv:1707.06347 http://arxiv.org/abs/1707.06347
2017 arXiv
-
[2019]
CoRR abs/1912.02400 (2019)
Covariance Matrix Adaptation for the Rapid Illumination of Behavior Space. CoRR abs/1912.02400 (2019). arXiv:1912.02400 http://arxiv.org/abs/1912.02400
2019 arXiv
-
[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
2021 doi
-
[2022]
In Workshop on Agent Learning in Open-Endedness (ALOE) at ICLR 2022
DIVERSITY POLICY GRADIENT FOR SAMPLE EFFI-CIENT QUALITY- DIVERSITY OPTIMIZATION. In Workshop on Agent Learning in Open-Endedness (ALOE) at ICLR 2022 . virtual, Vatican City. https://hal.science/hal-03753541
2022
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.