Skip to content
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

use of deprecated size_average=False in train_model #4

Open
gsimmskutta opened this issue Jan 31, 2021 · 0 comments
Open

use of deprecated size_average=False in train_model #4

gsimmskutta opened this issue Jan 31, 2021 · 0 comments

Comments

@gsimmskutta
Copy link

Training models gives the warning:

/usr/local/lib/python3.6/dist-packages/torch/nn/_reduction.py:44: UserWarning: size_average and reduce args will be deprecated, please use reduction='sum' instead.
  warnings.warn(warning.format(ret))

replacing line 28 of quick_train.py with

   criterion = MSELoss(reduction='sum')

appears to be the recommended way to address this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant