Skip to content

Commit

Permalink
set the default number of epochs to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
iiSeymour committed Sep 4, 2020
1 parent 28b1e66 commit 9746bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bonito/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def argparser():
parser.add_argument("--device", default="cuda")
parser.add_argument("--lr", default=1e-3, type=float)
parser.add_argument("--seed", default=25, type=int)
parser.add_argument("--epochs", default=400, type=int)
parser.add_argument("--epochs", default=20, type=int)
parser.add_argument("--batch", default=32, type=int)
parser.add_argument("--chunks", default=2000000, type=int)
parser.add_argument("--validation_split", default=0.97, type=float)
Expand Down

0 comments on commit 9746bcc

Please sign in to comment.