Skip to content

Commit

Permalink
Update default # workers from 1 -> 4
Browse files Browse the repository at this point in the history
  • Loading branch information
rwightman authored Sep 14, 2023
1 parent f692ec9 commit 68ffe66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/training/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def parse_args(args):
help="Optional identifier for the experiment when storing logs. Otherwise use current time.",
)
parser.add_argument(
"--workers", type=int, default=1, help="Number of dataloader workers per GPU."
"--workers", type=int, default=4, help="Number of dataloader workers per GPU."
)
parser.add_argument(
"--batch-size", type=int, default=64, help="Batch size per GPU."
Expand Down

0 comments on commit 68ffe66

Please sign in to comment.