WikiCSDataset](https://pytorch-geometric.readthedocs.io/en/latest/modules/datasets.html#torch_geometric.datasets.WikiCS)DeepGCNGENConv](https://pytorch-geometric.readthedocs.io/en/latest/modules/nn.html#torch_geometric.nn.conv.GENConv)DeepGCNLayer](https://pytorch-geometric.readthedocs.io/en/latest/modules/nn.html#torch_geometric.nn.models.DeepGCNLayer)ogn-proteins example](https://github.com/rusty1s/pytorch_geometric/blob/master/examples/ogbn_proteins_deepgcn.py)torch-sparse reductions with dim=0torch-sparse suppression of warningsPairNorm (https://github.com/rusty1s/pytorch_geometric/pull/1448)LayerNorm (https://github.com/rusty1s/pytorch_geometric/pull/1471)jittable bug when installing PyG via pipGNNExplainer with more modelsWebKB datasets from the Geom-GCN paperGCN2Conv from the Simple and Deep Graph Convolutional Networks paperTransformerConv from Masked Label Prediction: Unified Message Passing Model for Semi-Supervised ClassificationDistributedDataParallel support:Node2Vec implementation with p != 1 and q != 1torch-scatter and torch-sparse via multi-threading:spmmautosummary (https://github.com/rusty1s/pytorch_geometric/pull/1791)follow_batch argument in DataParallelWikipediaNetwork and Actor datasets from the Geom-GCN papertorch_geometric.utils.homophily_ratioTGN (Temporal Graph Network) (https://github.com/rusty1s/pytorch_geometric/pull/1519) (thanks to @emalgorithm)FiLMConvspspmm backward implementationSparseTensor, e.g., adj[torch.tensor([0, 1, 2]), torch.tensor([0, 1, 2])]cupgraph conversionstorch.manual_seedrandom_walk with custom transition probabilitiestorch.half supportHyperGraphConv https://github.com/rusty1s/pytorch_geometric/issues/1801torch-scatter and torch-sparse via multi-threading:fpsspspmmscattersegmentscatter_mul implementationNeighborSampler with GCNConv exampleTrimNet (TrimNet: learning molecular representation from triplet messages for biomedicine)I am not sure if this is helpful, or indeed even the correct place for this - please let me know if not and I can remove it. However I thought it might be useful to note that I have been using pytorch geometric with pytorch 1.6.0 over the past few days and haven't noticed any issues. My exact versions of the relevant packages are:
torch 1.6.0rc7
torch-cluster 1.5.6
torch-geometric 1.6.0
torch-scatter 2.0.5
torch-sparse 0.6.6
torch-spline-conv 1.2.0
I can run the test suite if it would be helpful?
Thanks for letting me know. I also encountered no major issues while upgrading. However, I still need to provide updated wheels for the latest PyTorch release.
Hi @rusty1s ,
I tried to install PyTorch Geometric with PyTorch 1.6.0 by following the instructions here. However, I cannot find the updated wheels for torch-sparse and torch-cluster. May I know if they will become available in the near future? Thanks!
Sure, they should be available next week :)
Just built sparse/scatter/cluster/spline-conv/geometric with PyTorch master, CUDA 11, cudnn8, GCC 9.3, MAGMA 2.5.2. Encountered no issues either compiling or running.
Just to add more to this, I've been using torch 1.6 throughout its development period, including the RCs. Never any problems.
Hi there,
I sm trying to read my data using TORCH_GEOMETRIC.IO.TU code. My data type is exactly similar to the enzymes dataset. However, the program stops with the Illegal instruction (core dumped) error at this line "node_slice = torch.cumsum(torch.from_numpy(np.bincount(batch)), 0)" in the split function. It seems that the problem is with the dimension but I can't figure out what the solution is. Could you please help with this.
Please note, I installed the package exactly as it is mentioned in the document.
Thanks
Not sure if that's the best place to discuss this issue :)
You can create a separate issue for that. If you also provide your raw data, I can help you identify the issue.
Hi Matthias,
Thanks for your quick reply. I have created a new issue here:
https://github.com/rusty1s/pytorch_geometric/issues/1601
Hi Matthias,
maybe it would be worth to replace network-x by cugraph, when gpu is supported.
I just have heard about it and thought, that it would make sense to give you a hint, if you havent heard about it before.
Regrads.
[EDIT:]
I have just seen, that nx is just used in datasets and examples. Therefore, it seems not to be that util. So just in case you need algorithms from network-x, it could be worth to have a look at cugraph. Or for numpy, have a look at cupy ;).
Please make sure you have the SuperpixelMnist dataset fixed in the next updates, thank you.
cugraph conversions is a good idea, I added it to the roadmap. The SuperpixelDataset is already fixed in master.
Just released PyTorch Geometric 1.6.2!
Thanks to many wonderful contributors :) Please let me know if you encounter any issues.
Most helpful comment
Just released PyTorch Geometric 1.6.2!
Thanks to many wonderful contributors :) Please let me know if you encounter any issues.