We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in code layer.py class multi_shallow_embedding The topk algorithm doesn't seem to work. `
class GNNStack(nn.Module): def init(self, gnn_model_type, num_layers, groups, pool_ratio, kern_size, in_dim, hidden_dim, out_dim, seq_len, num_nodes, num_classes, dropout=0.5, activation=nn.ReLU()):
super().__init__() # TODO: Sparsity Analysis k_neighs = self.num_nodes = num_nodes self.num_graphs = groups self.num_feats = seq_len if seq_len % groups: self.num_feats += ( groups - seq_len % groups ) self.g_constr = multi_shallow_embedding(num_nodes, k_neighs, self.num_graphs)
` k_neighs = num_nodes, So the example you gave doesn't take topk, and you also don't seem to notice the specific value of k in the paper
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in code layer.py class multi_shallow_embedding
The topk algorithm doesn't seem to work.
`
class GNNStack(nn.Module):
def init(self, gnn_model_type, num_layers, groups, pool_ratio, kern_size,
in_dim, hidden_dim, out_dim,
seq_len, num_nodes, num_classes, dropout=0.5, activation=nn.ReLU()):
`
k_neighs = num_nodes,
So the example you gave doesn't take topk, and you also don't seem to notice the specific value of k in the paper
The text was updated successfully, but these errors were encountered: