PytorchGeometricTutorial icon indicating copy to clipboard operation
PytorchGeometricTutorial copied to clipboard

Pytorch Geometric Tutorials

Results 9 PytorchGeometricTutorial issues
Sort by recently updated
recently updated
newest added

[Tutorial16] Report an error,There is an error in BatchNorm1d part

Hi In the final GAT implementation: We use two imported GATConv layers. In the constructor, we initialize each one of them with a dropout of 0.6. In the forward method,...

In tutorial 6 if we use the randomlinksplit how does train_pos_edge_index get handled later in the code? Does this line become: `train_pos_edge_index = train_data.edge_index.to(device)` ? And how is the test...

Hi, My background is in Knowledge Representation and Reasoning and I'm just a beginner in Deep Learning on Graphs, so apologies in advance if I say something against the (coding)...

Hi Antonio or anyone else, I am trying to see what do the counts 140, 500, 1000 mean for train, val and test **masks** respectively. ```torch.sum(data.train_mask), torch.sum(data.val_mask), torch.sum(data.test_mask), data``` Gives...

Reading the loss function of Node2Vec class (https://pytorch-geometric.readthedocs.io/en/latest/_modules/torch_geometric/nn/models/node2vec.html) , i feel the return value of "pos_loss + neg_loss" does not seem to take into account of 'num_negative_samples'. Shouldn't the loss...

Thanks for the very useful tutorials! When I was running Tutorial14 today, I encountered the error: ``` AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in 1 name = 'Cora' 2...

Hello, Thank you for the nice tutorial, it helps a lot to get started! I have a few questions concerning Tutorial16.ipynb: 1/ what is the effect of the parameter lin=True?...

Hi, this is a nice tutorial. However, I find that there are some minor problems with the materials. 1. I fond that they are same links so I think you...