fix eval_steps to be a sane default (#797)

* fix eval_steps to be a sane default

* update docs for fractional eval_steps
This commit is contained in:
Wing Lian
2023-10-27 22:36:30 -04:00
committed by GitHub
parent 0800885e2f
commit 8b79ff0e94
23 changed files with 36 additions and 36 deletions

View File

@@ -618,14 +618,14 @@ gradient_accumulation_steps: 1
# The number of samples to include in each batch. This is the number of samples sent to each GPU.
micro_batch_size: 2
eval_batch_size:
num_epochs: 3
num_epochs: 4
warmup_steps: 100
learning_rate: 0.00003
lr_quadratic_warmup:
logging_steps:
save_strategy: # Set to `no` to skip checkpoint saves
save_steps: # Leave empty to save at each epoch
eval_steps: # Leave empty to eval at each epoch
eval_steps: # Leave empty to eval at each epoch, integers for every N steps. decimal for fraction of total steps
save_total_limit: # Checkpoints saved at a time
# Maximum number of iterations to train for. It precedes num_epochs which means that
# if both are set, num_epochs will not be guaranteed.