Add NeighborSampler support for more Conv layer
See original GitHub issue🚀 Feature
I notice that currently only SAGEConv
and PointConv
support NeighborSampler
in PyG, could you make NeighborSampler
supported for more Conv layer like GATConv
.
Motivation
In fact, mant dataset in reality is a large graph that has to be corperated with mini-batch train.
Issue Analytics
- State:
- Created 4 years ago
- Comments:22 (12 by maintainers)
Top Results From Across the Web
Add NeighborSampler support for more Conv layer · Issue #430
I notice that currently only SAGEConv and PointConv support NeighborSampler in PyG, could you make NeighborSampler supported for more Conv layer ...
Read more >torch_geometric.loader — pytorch_geometric documentation
A data loader that performs mini-batch sampling from node information, using a generic BaseSampler implementation that defines a sample_from_nodes() function ...
Read more >Node Flow generated by the neighbor sampler for a 2-layer ...
For each node, the neighbor sampler randomly samples two neighbors. The first GCN layer performs convolution in block 1, and all the activated...
Read more >How Do Convolutional Layers Work in Deep Learning Neural ...
Learning a single filter specific to a machine learning task is a powerful technique. Yet, convolutional neural networks achieve much more in ...
Read more >PyG 2.0 Release
We finally provide full heterogeneous graph support in PyG 2.0. ... GeneralConv operator that can handle most GNN use-cases (e.g., ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That error is not related to the
NeighborSampler
. In fact, with PyG 1.6.0, most GNN can now be used with theNeighborSampler
API. ForGATConv
, you can find an example here.GATConv
now supported, see here.