spektral icon indicating copy to clipboard operation
spektral copied to clipboard

Graph Neural Networks with Keras and Tensorflow 2.

Results 69 spektral issues
Sort by recently updated
recently updated
newest added

Hello, I have a model like this: ``` l2_reg = 5e-4 # Regularization rate for l2 class MyFirstGNN(Model): def __init__(self, n_labels): super().__init__() self.conv1 = GCNConv(32, activation="elu", kernel_regularizer=l2(l2_reg)) self.conv2 = GCNConv(32,...

Dear Experts: I was trying to use GATConv in disjoint mode with disjoint data loader. But when I run model.fit, I got the following error that I couldn't figure out...

Hi! I'm trying to build a regression model which can predict a parameter starting from a dataset in which the X is represented by a couple (Graph, integer parameter) and...

the GCNConv layer gets two inputs that node with features and weighted adjacency matrix, but how we import the egde features?

This is more of a request than a functional issue. It would be extremely nice to be able to install and maintain spektral from conda. pip install into a conda...

feature-request

I took a look at the current layers, and the ones that support directed graphs only accept binary adjacency matrix as input (DiffusionConv is an exception but it's not performing...

feature-request

'Convolution in the Cloud: Learning Deformable Kernels in 3D Graph Convolution Networks for Point Cloud Analysis' is a good paper with 3D-GCN, whose funciton contain graph classification and node calssification....

feature-request

Hi, As I understand, the current GraphSAGE model takes into account the node level features for model training. Is there any example / support for GraphSAGE model which also supports...

feature-request

Hi @danielegrattarola , first of all great work. Do you have graculus pooling implemented (the one from Defferard's original ChebNet paper)? I could not find it, but it might be...

feature-request

Hi Daniele, Fantastic work! Can you add those two pooling methods please ? https://arxiv.org/pdf/1905.11577.pdf & https://arxiv.org/pdf/1904.13107.pdf (I have a source code but not very functional) thanks in advance, Guillaume

feature-request