Skip to content

Commit

Permalink
Half training paramters for SSD
Browse files Browse the repository at this point in the history
  • Loading branch information
lucataco committed Nov 12, 2023
1 parent 4499292 commit e891c2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ def train(
),
num_train_epochs: int = Input(
description="Number of epochs to loop through your training dataset",
default=4000,
default=2000,
),
max_train_steps: int = Input(
description="Number of individual training steps. Takes precedence over num_train_epochs",
default=1000,
default=500,
),
# gradient_accumulation_steps: int = Input(
# description="Number of training steps to accumulate before a backward pass. Effective batch size = gradient_accumulation_steps * batch_size",
Expand Down

0 comments on commit e891c2f

Please sign in to comment.