Skip to content

Commit

Permalink
Fix parameter in Double DQN
Browse files Browse the repository at this point in the history
  • Loading branch information
dennybritz committed Sep 28, 2016
1 parent 1b95e24 commit 51047b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQN/Double DQN Solution.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@
" experiment_dir=experiment_dir,\n",
" num_episodes=10000,\n",
" replay_memory_size=500000,\n",
" replay_memory_init_size=500,\n",
" replay_memory_init_size=50000,\n",
" update_target_estimator_every=10000,\n",
" epsilon_start=1.0,\n",
" epsilon_end=0.1,\n",
Expand Down

0 comments on commit 51047b9

Please sign in to comment.