Skip to content

Commit

Permalink
Changed default epochs, learning rate and batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
Subodh Malgonde authored and Subodh Malgonde committed Dec 21, 2017
1 parent 3c90f08 commit 9fc0a38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,15 +293,15 @@ def run():
'--num_epochs',
type=int,
nargs='?',
default=80,
default=20,
help='Number of epochs.'
)
parser.add_argument(
'-lr',
'--learning_rate',
type=float,
nargs='?',
default=0.06,
default=0.001,
help='Learning rate'
)

Expand All @@ -319,7 +319,7 @@ def run():
'--batch_size',
type=int,
nargs='?',
default=16,
default=8,
help='Batch size.'
)

Expand Down

0 comments on commit 9fc0a38

Please sign in to comment.