Xiao Han
Xiao Han
If you see any major flaw in this idea, please let me know. I'd be glad to contribute to this idea.
Similar issue: https://github.com/pyg-team/pytorch_geometric/issues/7364
Hi, I'm interested in making a pull request. Meanwhile I cannot push my branch to this project. Maybe I need to be added to this project first?
Thanks for the tips. I made a draft PR https://github.com/pyg-team/pytorch_geometric/pull/9243 but have some questions. It would be great if someone could take a look at it.
A quick update: a workaround below seems to work. ```python import pickle from napkinxc.models import PLT from napkinxc.datasets import load_dataset from napkinxc.measures import precision_at_k class PickleablePLT(PLT): """a picklable PLT class"""...