-
Hi, I have patches of features (14x8x8 each) from a CNN, each vertex is connected to all possibly related vertices/feature patches. I need to group related patches. I know that vertices that are related to each other would have a close values -values range from (-2,2)- in the feature patches, so I think this should be discriminative enough. I used three what could possibly be the issue here for the network not learning? I am not entirely sure if this could be done using gnns, that is why I am asking. cheers |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I personally think it is very important to incorporate relative spatial distance between patches as information to the GNN, e.g., this neighbor patch lays at the top/left of the center patch. Otherwise, you are basically learning on patches without any translation information, which makes this learning task pretty hard. Let me know if you are already doing this. |
Beta Was this translation helpful? Give feedback.
-
I think I found what I was doing wrong. The network was not learning because:
|
Beta Was this translation helpful? Give feedback.
I think I found what I was doing wrong. The network was not learning because:
now the loss starts at ~5.0 and decreased to 0.3 by epoch 6.
Thank you rusty1s. cheers =)