xbresson / spectral_graph_convnets

PyTorch implementation of spectral graph ConvNets, NeurIPS’16
MIT License
291 stars 68 forks source link

How can l extend your code to handle irregular graph (not a grid) with variable number of edges ? #3

Open pinkfloyd06 opened 6 years ago

pinkfloyd06 commented 6 years ago

Hello,

l would like to know whether your code extends to irregular graph structure , such that :

number of edges is variable (rather than number_edges = 8) and the graph is not a grid but an irregular graph (variable number of nodes and vertices. In your MNIST example you set grid_side = 28) Thank you

swg209 commented 5 years ago

The same question as@pinkfloy06, how to deside the grid side if I have 17 nodes in a fix graph,and the feature dim of every node is 2048. Thx.