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
No description provided.
The text was updated successfully, but these errors were encountered:
Hello, you must change these codes in 'hessian.py' line 275:
a_, b_ = torch.linalg.eig(T) eigen_list = a_.real weight_list = b_.real**2
Sorry, something went wrong.
I think more proper modification would be:
a_, b_ = torch.linalg.eig(T) eigen_list = a_.real weight_list = b_.real[0,:]**2
according to the source code. It would be nice if the author can fix this. But i think this repo is no longer maintained.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: