-
Notifications
You must be signed in to change notification settings - Fork 376
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
Wrong import: torch_geometric.utils.to_dense_adj #267
Comments
Really hoping the above can be fixed, in order to be able to use torch geometric temporal |
@anna-inf-met You can just change your local |
In what directory should I put the tsagcn.py file? |
@louiswng When installing a package, say torch_geometric_temporal, the corresponding code is stored somewhere on your computer. For example, I use miniconda and all torch_geometric_temporal code installed to a virtual environment can be found in C:\Users[user name]\AppData\Local\miniconda3\envs[env name]\Lib\site-packages\torch_geometric_temporal You can then navigate to torch_geometric_temporal\nn\attention\tsagcn.py and open and edit the code as described above. Does that help? Let me know if there's still an open question. :) |
Problem solved, thank you very much. |
Hey people! Any update on this bug? |
Unfortunately not, I've recently installed the package in another environment and had to do the manual fix again. It just takes a second though :) |
PR: #269 Can this be looked at by someone? |
Hi,
There is a broken import in torch_geometric_temporal\nn\attention\tsagcn.py, line 6:
from torch_geometric.utils.to_dense_adj import to_dense_adj
should be changed to
from torch_geometric.utils._to_dense_adj import to_dense_adj
.Would be great if that could be fixed. Thanks!
The text was updated successfully, but these errors were encountered: