graphtransformer icon indicating copy to clipboard operation
graphtransformer copied to clipboard

Graph Transformer Architecture. Source code for "A Generalization of Transformer Networks to Graphs", DLG-AAAI'21.

Results 8 graphtransformer issues
Sort by recently updated
recently updated
newest added

Would be interested to know whether you plan to apply the `graphtransformer` for a machine translation task in the future?

Hi there, I was reading your code on graphtransformer, I'm kind of curious on the operation shown below. Why did you divide the wV score by the w(or so called...

Hello, Thanks for sharing this amazing work! Any chance you can share the pretrained models used in the paper ? Thanks!

Could you provide some additional information about the memory consumption using your Graph Transformer? You state, that sparse-attention favors both computation time and memory consumption, but do not provide actual...

There's a series of numbers in 'train.index', but i don't know how to explain it

g.send_and_recv(eids, fn.src_mul_edge('V_h', 'score', 'V_h'), fn.sum('V_h', 'wV')) this only update target node; head_out = g.ndata['wV']/g.ndata['z'] so this only update target node;the source node not update?

```python net_params['in_dim'] = torch.unique(dataset.train[0][0].ndata['feat'],dim=0).size(0) # node_dim (feat is an integer) #code in main ...... in_dim_node = net_params['in_dim'] # node_dim (feat is an integer) #graphtransformer/nets/SBMs_node_classification/graph_transformer_net.py line:19 ...... self.embedding_h = nn.Embedding(in_dim_node, hidden_dim)...

# Add Python Testing Infrastructure ## Summary This PR sets up a comprehensive testing infrastructure for the Graph Transformer project. While the project uses Conda for its main dependencies, I've...