Pith. sign in

REVIEW 4 major objections 5 minor 13 references

On the Interplay Between Sparsity and Training in Deep Reinforcement Learning

T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Sparse network layouts change an agent's performance, and the best layout depends on whether hidden weights are fixed or learned.

desk verdict A genuinely new fixed-vs-learned sparsity comparison, but the central ranking reversal is asserted without a statistical test. read the letter →

arxiv 2501.16729 v2 pith:247ZCOIH submitted 2025-01-28 cs.LG cs.AI

classification cs.LGcs.AI
keywords sparseneuralnetworksdeepreinforcementlearningnetworkarchitecturefixedweightslearnedMinAtarDQNsparsitystructure
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper asks whether the particular way a neural network's connections are sparse, not just how many connections it has, changes how well a deep reinforcement learning agent learns. In the image-based MinAtar games Breakout and Space Invaders, it compares five equal-capacity Deep Q-Network architectures that are about 91 percent sparse: random, spatially biased, prediction-based, L1-regularized, and dense. The key result is that sparse structure significantly affects agent performance, and the ranking of architectures reverses depending on whether the hidden-layer weights are frozen at random values or trained by back-propagation. A surprising finding is that spatial connectivity, similar to what convolutional networks use, is not consistently the best choice even in games with apparent spatial structure. If correct, the result means architecture rankings for sparse RL networks are only meaningful when the training regime is specified.

What carries the argument

The load-bearing object is a binary mask $M \in \{0,1\}^{d \times n}$ applied to the hidden-layer weight matrix $\Phi$ by element-wise multiplication, $M \odot \Phi$. The mask fixes the sparse topology before learning and is held constant across training regimes, so the same connection structure is tested once with hidden weights frozen at random initialization and once with hidden weights learned. Capacity is controlled by giving every architecture the same number of active connections and the same hidden-layer dimensionality, with sparsity fixed at about 91 percent. This isolates the sparse structure as the only architectural variable, making any performance gap attributable to the interplay between topology and whether weights are fixed or learned.

What would settle it

Run the same capacity-controlled comparison in Breakout and Space Invaders with a Spatial variant that shares weights across kernels (a true convolution) or uses a different receptive-field size, and check whether it overtakes the random and prediction-based baselines under fixed hidden weights; if it does, the central spatial-sparsity claim is refuted. A second check is to repeat the fixed-versus-learned sweep on a third MinAtar game, such as Freeway or Asterix, and see whether the architecture ordering still reverses.

Watch

Extended reading notes

Core claim

The paper's central discovery is an interaction: the sparse connectivity pattern that yields the highest return is different when hidden weights are fixed than when they are learned. With fixed random hidden weights, a random sparse network can match a fully connected network on Breakout, while a spatially biased network performs worst; in Space Invaders, the spatially biased network leads. When hidden weights are learned end-to-end, prediction-based and dense networks benefit the most on Breakout, while on Space Invaders random and dense networks nearly triple their performance and spatial connectivity barely improves. At fixed capacity and sparsity, these ordering changes show that the utility of a sparse architecture comes from the combination of connectivity and whether weight magnitudes are tuned to the task.

Load-bearing premise

The load-bearing premise is that the Spatial baseline, a hand-coded set of nearest-neighbor connections without weight sharing using 36 or 54 inputs per feature, fairly represents what a spatially biased, convolutional-style architecture would do; if a different receptive field or weight sharing would change the ranking, the paper's conclusion that spatial sparsity is not the most performant would not generalize.

Editorial extensions

If this is right

  • Architecture rankings for sparse RL networks should report whether hidden weights are fixed or learned; the best topology in one regime is not reliably the best in the other.
  • A fully connected network's advantage is not uniform: with fixed weights, sparse random connectivity can match dense networks on Breakout, so large capacity is not always buying better returns.
  • Spatial sparsity is not automatically the right inductive bias in spatially structured RL domains; its performance is environment-dependent and can be the worst among the tested architectures.
  • Sparse masks generated under one training regime (such as L1-regularization trained end-to-end) carry an implicit dependency: L1-regularized sparsity only performs competitively when the weights are learned, not when they are frozen.
  • The fixed-versus-learned distinction is a meaningful axis for future sparse architecture selection, since the same connectivity can gain or lose several fold in average return depending on the regime.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the interaction generalizes beyond MinAtar, then transferring sparse architectures from one training pipeline to another, such as from a learned-weight benchmark to a fixed-weight deployment, could silently discard the inductive bias that made the architecture work.
  • The surprisingly strong performance of random sparse connectivity under frozen weights suggests that, in that regime, what matters most may be the number and dimensionality of features rather than any specific pairing of inputs; a test that varies feature count while holding connections random would clarify this.
  • A direct extension would be to compare the hand-coded Spatial baseline against a weight-sharing convolutional variant at equal capacity; if weight sharing changes the ranking, then the relevant inductive bias is not merely nearest-neighbor connectivity but shared filters.
  • The paper's two-domain comparison leaves open whether the observed interactions are stable across games; re-running the same fixed-versus-learned sweep on the full MinAtar suite would establish whether the reversal is a general property of sparse RL architectures.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper studies whether the relative performance of sparse DQN architectures depends on whether the hidden-layer weights are fixed to random values or learned end-to-end. Using MinAtar Breakout and Space-Invaders, it compares Random, Spatial, Predictive, L1-Reg, and Dense architectures at roughly 91% sparsity, with 30 independent trials per condition. The paper claims that sparse structure has a significant effect on performance when capacity is controlled, that the best architecture reverses between the fixed-weight and learned-weight regimes, that spatially biased sparsity is not the most performant in spatially structured domains, and that L1-Reg is competitive only when the hidden weights are learned. The evidence is entirely empirical, with no statistical tests reported.

Significance. If the central interaction is real, it is an important result for deep RL practice: it would caution against transferring architecture rankings between fixed-feature and end-to-end training regimes and against assuming that spatially biased sparsity is always preferable in image-based domains. The manuscript is transparent about hyperparameters, uses a reasonable number of trials, and provides visualizations of the generated masks, which are useful for interpretation. However, the paper's headline claims are currently supported only by mean learning curves and qualitative language, and at least one confound (per-architecture step-size tuning) is present in a key comparison, so the significance of the findings is conditional on additional analysis.

major comments (4)
  1. [§4.3–4.5, Figures 1–2] The paper's central claim is a rank reversal between the fixed-weight and learned-weight regimes, but the text supports this claim only with qualitative statements such as 'significantly higher', 'significant margin', and 'not statistically distinguishable', without any hypothesis test, confidence interval, or description of what the plotted error bars represent. Since these are means over 30 trials of a high-variance RL procedure, an apparent interaction can arise from sampling noise; please report inferential statistics for the key pairwise comparisons (for example, Dense vs Predictive and Predictive vs Random in learned Breakout; Spatial vs Random and Predictive vs Random in fixed and learned Space-Invaders) and, ideally, a test or effect-size measure for the fixed-vs-learned interaction itself.
  2. [Tables 2–3, §4.4] In Space-Invaders with learned hidden weights, Spatial and L1-Reg use step-size 1e-5 while Predictive and Random use 1e-4. A smaller Adam step-size can by itself reduce learning speed and final performance, so the conclusion that Spatial is 'not useful' and that L1-Reg trails in the learned regime is partially confounded by optimizer tuning. Please either adopt a common step-size for all architectures in each regime or demonstrate that the ranking is stable across the swept step-sizes, for example by showing learning curves or final returns for the alternative settings.
  3. [§4.5, Appendix A.2] The L1-Reg baseline is generated by running DQN with L1 regularization on the same environment and then evaluating the resulting mask in the learned-weight condition. The mask is therefore optimized for the exact task used in the evaluation, which makes the comparison with Random, Predictive, and Spatial partly self-referential; this is acknowledged in §4.5, but the manuscript should either report how the conclusion changes when L1-Reg masks are generated on a different task or environment, or restrict the claims about L1-Reg accordingly.
  4. [§4.2, Figures 5 and 8, §4.4] The claim that 'spatially-biased sparsity is not useful' in spatially structured domains depends on the Spatial baseline being a fair proxy for convolutional-style spatial bias. This baseline uses fixed nearest-neighbor receptive fields without weight sharing, whereas the success of convolutions is often attributed to weight sharing and translation equivariance; with a different receptive-field size or shared weights the ranking could change. The paper flags this as future work in §4.4, but since the Spatial result is an explicit headline finding, the limitation should be stated directly alongside the claim and the conclusion should be narrowed accordingly.
minor comments (5)
  1. [§4.2] The text says that 'Each architecture has the same number of learnable parameters' but immediately notes that Dense has nearly ten times the active hidden-layer weights; please clarify that capacity is controlled at the level of hidden-layer dimensionality and sparsity fraction rather than total active parameters.
  2. [References] The references list Silver et al. 2017a and 2017b with the same title ('Mastering the game of go without human knowledge'); this duplication should be corrected.
  3. [§2.2, Eq. (4)] There is a typographical spacing error in the sentence following Eq. (4): 'In machine learning,L1-regularization' should have a space after the comma.
  4. [Figures 1–2] The main-text figures do not appear to include error bars or a description of their construction; if error bars are omitted from the figures, please state this explicitly in the figure captions or text.
  5. [General] No code or data release is indicated; for an empirical study of this kind, providing code or precomputed learning curves would substantially improve reproducibility.

Circularity Check

1 steps flagged · score 2.0 of 10

Main fixed-vs-learned comparison is self-contained; L1-Reg baseline is self-referential but disclosed and non-central.

  1. fitted input called prediction [Section 4.5, 'Case Study: Learned Hidden Weights and Topology' (paragraph beginning 'Why do we observe that L1-Reg...')]
    "Recall that in order to generate L1-sparsity, we trained a dense network with a regularized loss function. This means that L1-sparsity is optimized for a network that is learned end-to-end through back-propagation. For this reason, L1-Reg yields high performance when the network is trained, which is precisely what Figure 2 shows. In other words, the learning task that generated L1-sparsity is the same task to approximate the action-values in DQN."

    The L1-Reg mask is fitted by training a DQN with L1 regularization on the same environment and the same action-value objective used in the subsequent evaluation. Reporting that this baseline 'performs better than Random and statistically on par with Dense' in the learned-weights condition is therefore partly an in-sample report of the mask-generation procedure rather than an independent test of a fixed sparse topology. The paper explicitly acknowledges this ('the same task to approximate the action-values in DQN'), so the step is disclosed. It does not make the main fixed-vs-learned reversal circular because that reversal is driven by Random, Spatial, Predictive, and Dense, whose masks do not come from the evaluated objective.

full rationale

The paper's central claim is an empirical ranking comparison across sparse DQN architectures under two training regimes, not a derivation from a fitted quantity. Random, Spatial, and Predictive masks are generated by procedures external to the evaluated DQN objective (random assignment, hand-coded neighborhoods, and Prediction Adapted Networks respectively), so the observed reversal in which architecture performs best under fixed versus learned hidden weights is independent evidence. The Predictive baseline does cite prior work by a co-author (Martin & Modayil, 2021), but the current paper's conclusion about predictive sparsity rests on the new Figure 2 results, not on that citation, so the self-citation is not load-bearing. The only self-referential element is the L1-Reg baseline: its mask is produced by optimizing the same DQN/L1 loss used in the learned-weights evaluation, making its learned-regime performance partly a re-test of the fitting procedure. This is acknowledged in Section 4.5 and does not drive the paper's main interplay claim. Missing inferential statistics are a correctness/support concern, not circularity.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The central claim depends on the step-size sweeps, the L1 threshold rule, and the assumption that fan-in count controls capacity. No new physical or mathematical entities are postulated.

free parameters (5)
  • Step-size for each architecture/domain/learning regime = Breakout frozen: 0.1; Breakout learned: 1e-4; Space-Invaders frozen: 1e-4 for most; Space-Invaders learned: 1e-4 or…
    Swept per architecture and environment; the reported rank order may depend on this tuning.
  • L1 regularization coefficient = Breakout 2.5e-5, Space-Invaders 2e-5
    Chosen so the resulting sparsity matches 91%.
  • L1 zeroing threshold = average hidden weight magnitude
    Weights below the average are zeroed out; this ad hoc rule determines the L1 mask.
  • Sparsity level = 91%
    Fixed by design to equalize active connections; not fitted, but it is a choice that conditions all results.
  • Predictive mask generation parameters = k=9 neighbors, n=16 pre-activations per neighborhood, update frequency 1000 steps
    Taken from the Prediction Adapted Networks setup; they shape the Predictive baseline but are not fitted in this paper.
assumptions (5)
  • domain assumption MinAtar Breakout and Space-Invaders have spatial dependence structure that a nearest-neighbor receptive field can exploit.
    Used to motivate the expectation that Spatial should perform best (Section 4.1).
  • domain assumption Controlling the number of active connections controls network capacity.
    The paper equates capacity with active weight count; Dense is excluded from this control (Section 4.2).
  • domain assumption A single hidden ReLU layer suffices to learn action-values in these domains.
    All agents use one hidden layer (Section 2.1); results could differ with deeper networks.
  • domain assumption The sparse structure is fixed during learning and is not affected by optimization.
    The setup in Section 2.2 defines M as a constant binary mask; this excludes learnable topology methods.
  • domain assumption Standard DQN with target network and Adam is a reliable base learner.
    The paper uses this as the common training procedure (Section 2.1); failures of the base learner would affect all architectures similarly.

how reviews work

0 comments
Cite this review

Pith. "Pith review of On the Interplay Between Sparsity and Training in Deep Reinforcement Learning." pith.science (2026). https://pith.science/paper/247ZCOIH

@misc{pith2026250116729,
  author       = {Pith},
  title        = {Pith review of: On the Interplay Between Sparsity and Training in Deep Reinforcement Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/247ZCOIH}},
  note         = {Machine review of arXiv:2501.16729}
}
read the original abstract

We study the benefits of different sparse architectures for deep reinforcement learning. In particular, we focus on image-based domains where spatially-biased and fully-connected architectures are common. Using these and several other architectures of equal capacity, we show that sparse structure has a significant effect on learning performance. We also observe that choosing the best sparse architecture for a given domain depends on whether the hidden layer weights are fixed or learned.

Figures

Figures reproduced from arXiv: 2501.16729 by the authors.

Figure 1
Figure 1. Average return for DQN architectures whose hidden layer is randomly initialized and frozen in [PITH_FULL_IMAGE:figures/full_fig_p006_1.png] view at source ↗
Figure 2
Figure 2. Average return corresponding to DQN architectures whose hidden layer is learned end-to-end in [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. Visualization of the Breakout and Space-Invaders environments (Young & Tian, 2019). In Breakout, each frame has four input channels corresponding to each of the four objects in the environment: (1) the paddle which moves left or right at the bottom of the frame, (2) the ball which bounces off the paddle, (3) the trail which follows the ball’s trajectory one time step in the past and (4) the brick wall. Each time a b… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: One of the predictive masks in Breakout. The inputs in yellow are those that are “on” in the mask. Prediction Adapted Neighborhoods found this subset to help predict the next values of the entry marked by the red “X”. B Experiment Hyper-parameters [PITH_FULL_IMAGE:fig…
Figure 5
Figure 5. Figure 5: One of the spatial neighborhoods in Breakout. The inputs that are “on” are shown in yellow—these are located closest to entries marked by the red “X” [PITH_FULL_IMAGE:figures/full_fig_p014_5.png]
Figure 6
Figure 6. Figure 6: One of the random neighborhoods in Breakout. 14 [PITH_FULL_IMAGE:figures/full_fig_p014_6.png]
Figure 7
Figure 7. Figure 7: One of the predictive masks in Space-Invaders. The inputs in yellow are those that are “on” in the mask. Prediction Adapted Neighborhoods found this subset to help predict the next values of the entry marked by the red “X” [PITH_FULL_IMAGE:figures/full_fig_p015_7.png]
Figure 8
Figure 8. Figure 8: One of the spatially-biased masks in Space-Invaders. The inputs that are “on” are shown in yellow—these are located closest to entries marked by the red “X”. 15 [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 9
Figure 9. Figure 9: One of the random binary masks in Space-Invaders [PITH_FULL_IMAGE:figures/full_fig_p016_9.png]
Figure 10
Figure 10. Figure 10: Average magnitudes (left) and average percentages (right) of hidden layer weights that fall below [PITH_FULL_IMAGE:figures/full_fig_p016_10.png]
Figure 11
Figure 11. Figure 11: Average magnitudes (left) and average percentages (right) of hidden layer weights that fall [PITH_FULL_IMAGE:figures/full_fig_p017_11.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

13 extracted references · 6 canonical work pages

  1. [1]

    On the convergence of bounded agents.arXiv preprint arXiv:2307.11044,

    David Abel, André Barreto, Hado van Hasselt, Benjamin Van Roy, Doina Precup, and Satinder Singh. On the convergence of bounded agents.arXiv preprint arXiv:2307.11044,

  2. [7]

    Discovering sensor space: Constructing spatial embeddings that explain sensor correlations

    Joseph Modayil. Discovering sensor space: Constructing spatial embeddings that explain sensor correlations. In 2010 IEEE 9th International Conference on Development and Learning, pp. 120–125. IEEE,

  3. [10]

    The quest for a common model of the intelligent decision maker

    Richard S Sutton. The quest for a common model of the intelligent decision maker. arXiv preprint arXiv:2202.13252,

  4. [11]

    Are Sparse Neural Networks Better Hard Sample Learners?

    Qiao Xiao, Boqian Wu, Lu Yin, Christopher Neil Gadzinski, Tianjin Huang, Mykola Pechenizkiy, and Decebal Constantin Mocanu. Are sparse neural networks better hard sample learners?arXiv preprint arXiv:2409.09196,

  5. [13]

    friendly bullet

    11 Under review as submission to TMLR A Experimental Details A.1 Trials, Initial Conditions and Environment Dynamics To evaluate performance, we compute the average return incurred by each DQN agent over 30 independent trials. More specifically, atrial refers to a random seed used to (1) randomly initialize the DQN weights at the beginning of learning, (2...

  6. [2009]

    Learning Sparse Representations Incrementally in Deep Reinforcement Learning

    J Fernando Hernandez-Garcia and Richard S Sutton. Learning sparse representations incrementally in deep reinforcement learning. arXiv preprint arXiv:1912.04002,

  7. [2010]

    Towards model-free RL algorithms that scale well with unstructured data

    Joseph Modayil and Zaheer Abbas. Towards model-free RL algorithms that scale well with unstructured data. arXiv preprint arXiv:2311.02215,

  8. [2015]

    Dynamic Sparse Training: Find efficient sparse network from scratch with trainable masked layers.arXiv preprint arXiv:2005.06870,

    Junjie Liu, Zhe Xu, Runbin Shi, Ray CC Cheung, and Hayden KH So. Dynamic Sparse Training: Find efficient sparse network from scratch with trainable masked layers.arXiv preprint arXiv:2005.06870,

Show all 13 references
  1. [2018]

    Adam: A method for stochastic optimization

    Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980,

  2. [2019]

    Adapting the function approximation architecture in online reinforce- ment learning

    9 Under review as submission to TMLR John D Martin and Joseph Modayil. Adapting the function approximation architecture in online reinforce- ment learning. arXiv preprint arXiv:2106.09776,

  3. [2020]

    Mastering the game of go without human knowledge

    David Silver, Julian Schrittwieser, Karen Simonyan, Ioannis Antonoglou, Aja Huang, Arthur Guez, Thomas Hubert, Lucas Baker, Matthew Lai, Adrian Bolton, et al. Mastering the game of go without human knowledge. Nature, 550(7676):354–359, 2017a. David Silver, Julian Schrittwieser...

  4. [2022]

    Taylor, Mykola Pechenizkiy, and Decebal Constantin Mocanu

    Bram Grooten, Ghada Sokar, Shibhansh Dohare, Elena Mocanu, Matthew E. Taylor, Mykola Pechenizkiy, and Decebal Constantin Mocanu. Automatic noise filtering with dynamic sparse training in deep reinforce- ment learning. InProceedings of the 2023 International Conference on Auton...

  5. [2024]

    MinAtar: An Atari-inspired testbed for thorough and reproducible reinforce- ment learning experiments.arXiv preprint arXiv:1903.03176,

    Kenny Young and Tian Tian. MinAtar: An Atari-inspired testbed for thorough and reproducible reinforce- ment learning experiments.arXiv preprint arXiv:1903.03176,

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.