Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
0 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.
-
Hi,
i'm working on a GNN to classify 3D geometric shapes in a 3D cube. The cube and its geometric shape is mesh based.
I'm allready capable to classify a cube with one geometric shape and it works realy well. For that i'm using the dataset from this paper https://github.com/zibozzb/FeatureNet and this PyG examle https://colab.research.google.com/drive/1I8a0DfQ3fI7Njc62__mVXUlcAleUclnb?usp=sharing
My graphs look something like that:
Data(x=[14, 3], edge_index=[2, 144], y=[24])
Now, i want to classify a cube with two or more shapes. I tried following steps:
y = [0, 0, 1, 0, ..., 0, 1]
But i'm not shure how to continue with the training method or if this is the right way anyway.
Is there some example for multi-output or multi-label classification?
Kind Regards
Stefan
Beta Was this translation helpful? Give feedback.
All reactions