Replies: 1 comment 2 replies
-
Thanks for your interest. It's impossible to say how features should look like :) Does your model learn at all or is it producing random results? Since all of your features are close to |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello and thank you for your great efforts.
I have been trying to implement graph convolutions to build a recommendation system. I have a bipartite graph of users and articles. I'm using torch geometric's SAGEConv. My code looks like this:
However, I noticed that after the second layer of convolution the layer outputs become very similar. This is how the output of the last layer looks like:
This persists after an arbitrary number of epochs as well. Is there something wrong with how I am implementing the graph convolutional layers?
I have also tried replacing my feature matrix(data.x_i, data.x_u) with random values, but did not see any difference this happens no matter what the initial values of x_i and x_u are.
Beta Was this translation helpful? Give feedback.
All reactions