Papers › Efficient Deep Reinforcement Learning Requires Regulating Overfitting

Efficient Deep Reinforcement Learning Requires Regulating Overfitting

20 Apr 2023arXiv:2304.10466archive 2025-07-28

Qiyang Li, Aviral Kumar, Ilya Kostrikov, Sergey Levine

Deep reinforcement learning algorithms that learn policies by trial-and-error must learn from limited amounts of data collected by actively interacting with the environment. While many prior works have shown that proper regularization techniques are crucial for enabling data-efficient RL, a general understanding of the bottlenecks in data-efficient RL has remained unclear. Consequently, it has been difficult to devise a universal technique that works well across all domains. In this paper, we attempt to understand the primary bottleneck in sample-efficient deep RL by examining several potential hypotheses such as non-stationarity, excessive action distribution shift, and overfitting. We perform thorough empirical analysis on state-based DeepMind control suite (DMC) tasks in a controlled and systematic way to show that high temporal-difference (TD) error on the validation set of transitions is the main culprit that severely affects the performance of deep RL algorithms, and prior methods that lead to good performance do in fact, control the validation TD error to be low. This observation gives us a robust principle for making deep RL efficient: we can hill-climb on the validation TD error by utilizing any form of regularization techniques from supervised learning. We show that a simple online model selection method that targets the validation TD error is effective across state-based DMC and Gym tasks.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2304.10466")

Code

Syntology Ran 1 of 15 code samples harvested from 3 repositories linked to this paper; 14 have no recorded run. Of those that ran: 1 ran with no contract checked.

By repository: found in paper text by Syntology: 15 samples from 3 repositories, 1 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

ikostrikov/walk_in_the_park found in paper text by SyntologyMIT report
ikostrikov/jaxrl found in paper text by Syntology report
evgenii-nikishin/rl_with_resets found in paper text by SyntologyMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

15 samples harvested; 1 ran; 0 honoured the contract we drafted; 14 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran
14unverified

Licence: 0 of the 15 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 3 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

default_init evgenii-nikishin/rl_with_resets/continuous_control/networks/common.py found in paper text by Syntology ran MIT (permissive) · 718462716d78ea99 · report
REDQLearner ikostrikov/jaxrl/jaxrl/agents/redq/redq_learner.py found in paper text by Syntology unverified MIT (permissive) · f0ff6ea848e52f45 · report
_update_jit ikostrikov/jaxrl/jaxrl/agents/redq/redq_learner.py found in paper text by Syntology unverified MIT (permissive) · cde7d367f320d964 · report
create_env_wrapper evgenii-nikishin/rl_with_resets/discrete_control/eval_run_experiment.py found in paper text by Syntology unverified MIT (permissive) · b0d2f7580e14b4a6 · report
delete_ind_from_array evgenii-nikishin/rl_with_resets/discrete_control/eval_run_experiment.py found in paper text by Syntology unverified MIT (permissive) · a50b18c10731aa3a · report
drq_image_aug evgenii-nikishin/rl_with_resets/discrete_control/networks.py found in paper text by Syntology unverified MIT (permissive) · 58031134f80381f9 · report
evaluate evgenii-nikishin/rl_with_resets/continuous_control/evaluation.py found in paper text by Syntology unverified MIT (permissive) · a34f6a7ad7ae7710 · report
evaluate ikostrikov/walk_in_the_park/rl/evaluation.py found in paper text by Syntology unverified MIT (permissive) · fed35e39e159f251 · report
normalize_score evgenii-nikishin/rl_with_resets/discrete_control/eval_run_experiment.py found in paper text by Syntology unverified MIT (permissive) · 71d1b50edc65f329 · report
orientation_terminal_condition ikostrikov/walk_in_the_park/real/resetters.py found in paper text by Syntology unverified MIT (permissive) · 5ef98ddf8676a4f9 · report
process_inputs evgenii-nikishin/rl_with_resets/discrete_control/networks.py found in paper text by Syntology unverified MIT (permissive) · 055c05453cdea31d · report
renormalize evgenii-nikishin/rl_with_resets/discrete_control/networks.py found in paper text by Syntology unverified MIT (permissive) · 3692fa3a61b257cd · report
soft_target_update ikostrikov/walk_in_the_park/rl/networks/common.py found in paper text by Syntology unverified MIT (permissive) · 390aef8497c3346d · report
split_tree evgenii-nikishin/rl_with_resets/continuous_control/networks/common.py found in paper text by Syntology unverified MIT (permissive) · 99bd73397c2663ca · report
tree_norm evgenii-nikishin/rl_with_resets/continuous_control/networks/common.py found in paper text by Syntology unverified MIT (permissive) · 9678fbfc085148cf · report

Tasks

Deep Reinforcement LearningModel SelectionReinforcement Learningreinforcement-learning

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections