Questions tagged [gnn]

11 questions
4
votes
1 answer

What is difference between transductive and inductive in GNN?

It seems in GNN(graph neural network), in transductive situation, we input the whole graph and we mask the label of valid data and predict the label for the valid data. But is seems in inductive situation, we also input the whole graph(but sample…
DunkOnly
  • 661
  • 1
  • 7
  • 16
1
vote
1 answer

How to define similarity between nodes in original graph?

While there has been a lot of talk in how to define the similarity between nodes in the embedding space, but I don't seem to come across any talking about defining the similarity between nodes in the original, non-embedded graph. Any suggestions as…
1
vote
2 answers

What is the model architectural difference between transductive GCN and inductive GraphSAGE?

Difference of the model design. It seems the difference is that GraphSAGE sample the data. But what is the difference in model architecture.
DunkOnly
  • 661
  • 1
  • 7
  • 16
1
vote
1 answer

Trouble Training GNN for Binary Node Classification Task

I am using a GNN to solve a problem in which I have a query target and an undirected graph. My goal is to emit a subset of nodes in the graph (via a node-wise binary prediction) whose features sum to the target query. I figured this would be…
mt_
  • 11
  • 1
1
vote
0 answers

Graph Neural Network | How node embeddings are learned from several graphs?

I am reading paper on MEGnet which is a GNN. The objective is that we have several molecules that share same elements such as molecules $C0_2$ and $COOH$ share $C$ and $O$. Now if we learn the node embeddings of the both graphs via representation…
user0193
  • 155
  • 7
1
vote
1 answer

When an author says Features are the input to Machine Learning Model what does it mean?

I am reading an article about graph neural network and it is mentioned: In this step, we extract all newly update hidden states and create a final feature vector describing the whole graph. This feature vector can be then used as input to a…
user0193
  • 155
  • 7
0
votes
0 answers

Building a graphic neural network (GNNs) model from my own dataset (tabular dataset)

I am intended to build a GNN. I am using my own dataset (tabular dataset), so to build a graph I can't use benchmark datasets as I have my own dataset. How can I build a graph first and then build a model to predict whether a participant needs…
0
votes
1 answer

Matching nodes in two directed graphs

How to match a node of graph X with the same node in graph G if: Every node has only one feature: text string, and Nodes in different graphs are considered to be equal if: 2.1 Nodes have the same value of text feature, and 2.2 Nodes have…
dokondr
  • 295
  • 3
  • 11
0
votes
0 answers

how to find out input data, its structure and how to achieve them on graph machine learning model?

I'm a newbie in graph machine learning and apologize if my question is silly. There is a model suggested in some paper for inductive link prediction, I need to use that model on my custom graph but I couldn't find out what the data structure is.…
0
votes
0 answers

My model is not learning

I am using the ogb molhiv dataset for graph classification, I imported the data and created the DataLoader following the ogb documentation. The data is composed of 41127 graphs and there are 2 classes. Below is the code to implement the neural…
0
votes
2 answers

Same code vastly different accuracies

I am working on a node classification model, My friend implemented a simple 2 layer GCN and got an accuracy of 62%, I implemented the same code and got an accuracy of 50% we are both working on google collab, anyone knows why this is happening.
edak
  • 3
  • 2