Skip to content

Commit

Permalink
fix a typo (pytorch#466)
Browse files Browse the repository at this point in the history
fix a typo in default argument 'seed'
  • Loading branch information
zeakey authored and soumith committed Dec 10, 2018
1 parent 64f829c commit 35a9d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reinforcement_learning/actor_critic.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
parser.add_argument('--gamma', type=float, default=0.99, metavar='G',
help='discount factor (default: 0.99)')
parser.add_argument('--seed', type=int, default=543, metavar='N',
help='random seed (default: 1)')
help='random seed (default: 543)')
parser.add_argument('--render', action='store_true',
help='render the environment')
parser.add_argument('--log-interval', type=int, default=10, metavar='N',
Expand Down

0 comments on commit 35a9d84

Please sign in to comment.