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
In this line,
pytorch-ensembles/utils/swag_model.py
Line 231 in 76b71c9
So, it seems that lines 230-231 should be the following instead:
for param, mean, var in zip(param_list, mean_list, var_list): logprob += Normal(mean, var**(0.5)).log_prob(param).sum()
The text was updated successfully, but these errors were encountered:
Yes, sounds right to me.
Sorry, something went wrong.
No branches or pull requests
In this line,
pytorch-ensembles/utils/swag_model.py
Line 231 in 76b71c9
Isn't scale supposed to be the square root of variance?
So, it seems that lines 230-231 should be the following instead:
The text was updated successfully, but these errors were encountered: