We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
isinstance(device_train_microbatch_size, Union[int, float]) should be isinstance(device_train_microbatch_size, (int, float)) on line
isinstance(device_train_microbatch_size, Union[int, float])
isinstance(device_train_microbatch_size, (int, float))
composer/composer/trainer/trainer.py
Line 298 in 3c0a817
The text was updated successfully, but these errors were encountered:
Good point! Would you mind opening a PR and tagging me for review?
Sorry, something went wrong.
Quick fix just did it. Thanks for flagging!
device_eval_microbatch_size
No branches or pull requests
isinstance(device_train_microbatch_size, Union[int, float])
should be
isinstance(device_train_microbatch_size, (int, float))
on line
composer/composer/trainer/trainer.py
Line 298 in 3c0a817
The text was updated successfully, but these errors were encountered: