Closed SimonCrouzet closed 3 years ago
hi @SimonCrouzet , thanks for using our AutoGL! I see that your dataset contains multiple graphs and each graph has only one label. Are you trying to perform graph classification? If so, you should try using AutoGraphClassifier instead. Currently he node classifier is designed for classifiying on dataset with one graph inside (transductive mode) only. Let me know if you have other concerns :)
Closing because of too long time no response
Hello, and thanks for this great autoML framework!
I'm encountering some issues when I try to use my own data with AutoGL. I have a list of PyTorch Geometric's Data objects, I tried to initialise a dataset using your doc, but it doesn't have the same behaviour than prebuilt datasets with random_splits_mask_class():
I obtained an error
AssertionError: the total number of samples from every class used for training and validation is larger than the total samples in class 0
with myData, which I believe is coming from a different dataset structure:(pair is a custom metadata from my data)
Am I missing something, or is there an unexpected behaviour from the suggested MyDataset?
Thanks in advance,