-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework tests to compare trainer checkpoint args #29883
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should potentially use warning_once as well?
train_bs_args = training_args.per_device_train_batch_size | ||
train_bs_state = trainer_state.train_batch_size // max(1, training_args.n_gpu) | ||
|
||
if train_bs_args != train_bs_state: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
* Start rework * Fix failing test * Include max * Update src/transformers/trainer.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
* Start rework * Fix failing test * Include max * Update src/transformers/trainer.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
What does this PR do?
Follow-up to #29255, noticed that this fails on multi-GPU since there is logic involved on the batch size, which we need to bring back in because
train_batch_size
is the total batch size, ortrain_batch_size // n_gpu
.I also noticed it would print out a list of warnings, which can get messy, so condensed the logs down to a single one for users.
Fixes failing CI on accelerate main (tested locally on two GPUs)
Before submitting
Pull Request section?
to it if that's the case.
documentation guidelines, and
here are tips on formatting docstrings.
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.
@ArthurZucker