Skip to content

Commit

Permalink
fix seed type
Browse files Browse the repository at this point in the history
  • Loading branch information
rizar committed Jan 22, 2019
1 parent 82bc6d7 commit cb95d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion babyai/arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self):
help="image embedding architecture")

# Validation parameters
self.add_argument("--val-seed", type=int, default=1e9,
self.add_argument("--val-seed", type=int, default=int(1e9),
help="seed for environment used for validation (default: 1e9)")
self.add_argument("--val-interval", type=int, default=1,
help="number of epochs between two validation checks (default: 1)")
Expand Down

0 comments on commit cb95d72

Please sign in to comment.