Skip to content

Commit

Permalink
satat
Browse files Browse the repository at this point in the history
  • Loading branch information
manila95 committed Jan 18, 2024
1 parent 2e39305 commit 10fafbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cleanrl/dqn.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def parse_args():
help="the batch size of sample from the reply memory")
parser.add_argument("--start-e", type=float, default=1,
help="the starting epsilon for exploration")
parser.add_argument("--end-e", type=float, default=0,
parser.add_argument("--end-e", type=float, default=0.05,
help="the ending epsilon for exploration")
parser.add_argument("--exploration-fraction", type=float, default=0.5,
help="the fraction of `total-timesteps` it takes from start-e to go end-e")
Expand Down

0 comments on commit 10fafbc

Please sign in to comment.