-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
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
Is it possible to use this pipeline with Dataset more than 2 classes? And how to do that? #23
Comments
I have dataset with more than 2 classes and I can prepare according to discription of 'How to use own Dataset'. But what should I change so I can use it for multi label dataset? |
Hi, multi-class dataset is supported by DGCNN. There is no need to change. For example, the ENZYMES dataset has 6 classes. Thanks! |
yes, It works. I can train the network on my dataset. Thanks. Morever, if I want to train the network with the features for every node, for example I have one dimensional feature called confidence score for every node, where should I add these features in Dataset, so that network can consider also features of node during training? You explained one time to use dortmund2txt.m but I cannot figure out, that How can I add to my own dataset? |
Hi, if your node feature is only integer labels, you can follow the README under data/ to transform your dataset to a txt file. If you have additional continuous feature, you can append it to each line (representing a node) of the txt file. Check "data/Synthie/Synthie.txt" for the format. |
No description provided.
The text was updated successfully, but these errors were encountered: