-
How can I use the graphormer model with custom dataloader and training scripts (not the fairseq commands)?
My data consists of DGL graphs and my setup uses DGL GraphConv layers. I want to use Graphor…
-
您好,很高兴您能分享你的工作!
我在运行你的代码时候我把train_gnn.py的--model参数改为gcn,代码就运行错误了,似乎网络的写法有问题?我要怎么改呢?
`Traceback (most recent call last):
File "/mnt/drive0/gfq/link_steal_pets2024-master/train_gnn.py", line 87…
-
Hello, I've been trying to run models on the SeaPearlZoo, followed the documentation but I get this error:
```
LoadError: MethodError: no method matching (::GraphConv{GraphSignals.NullGraph, Matrix{…
-
Exposed in #214
```julia
julia> A = [0 1 0
1 0 0
0 0 0];
julia> fg = FeaturedGraph(A, nf=rand(2,3));
julia> m = GraphConv(2 => 2);
julia> m(fg)
ERROR: ArgumentEr…
-
Hello dear author, the arguments in the code below num_layers, how do I feel that it is the number of layers of GCN?
###List of GCN layers
self.GCNs = torch.nn.ModuleList()
self.GCNs.app…
-
Hello, I'm new to `GeometricFlux` and currently experimenting with its features.
I just ran into the following issue: when I use a directed graph as input of a `GraphConv` layer, it raises a `Dimen…
-
HeteroGraphConv are build out of standard graph conv layers which are individually applied to the different relations.
The list of layers supporting integration with HeteroGraphConv should be extend…
-
### 🐛 Describe the bug
I am having this issue with my model as
```
from torch_geometric.nn import SAGEConv, to_hetero,GraphConv
from torch.nn import Linear
from torch_geometric.utils import to_u…
-
## 🐛 Bug
## To Reproduce
Steps to reproduce the behavior:
Following the code snippet example in HeteroGraphConv documentation with an actual implementation results in a crash
[HeteroGraphC…
-
This line will fail in mini-batch training if the graph has one relation type and one node type.
https://github.com/dmlc/dgl/blob/92e77330659fe0f5673c76b966aad727752cb7ef/python/dgl/nn/pytorch/conv…