You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Cause:
I tried to use from ogb.graphproppred import PygGraphPropPredDataset in my project and found that the program does not exit properly. I tried a simple test program, similar to the code in the minimally reproducible problem, and found that referencing ogb triggered the problem of the program not exiting properly.
I tried copying the relevant implementation from ogb locally and referencing it from a local package and found that the local package does not cause this problem. The only difference between the local and ogb implementations is that there is no if __name__ == '__main__' added to the code.
The text was updated successfully, but these errors were encountered:
Hi! Thanks for reporting. Could you tell us a bit more about your environment? I cannot reproduce your issue. I can run import ogb; print(ogb.__version__) without any problem.
Minimum reproducible program:
import ogb print(ogb.__version__)
Problem Cause:
I tried to use from ogb.graphproppred import PygGraphPropPredDataset in my project and found that the program does not exit properly. I tried a simple test program, similar to the code in the minimally reproducible problem, and found that referencing ogb triggered the problem of the program not exiting properly.
I tried copying the relevant implementation from ogb locally and referencing it from a local package and found that the local package does not cause this problem. The only difference between the local and ogb implementations is that there is no
if __name__ == '__main__'
added to the code.The text was updated successfully, but these errors were encountered: