-
Notifications
You must be signed in to change notification settings - Fork 104
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 DES applicable for Graph convolutional Networks (GCNs) #270
Comments
Hello, So in your case, your data is represented by graphs (training/testing data) instead of just a tabular matrix correct? Unfortunately, all inputs to DESlib follow the scikit-learn standard, always having real-valued feature vectors as input in a 2d matrix where each row represents a new instance: https://scikit-learn.org/stable/faq.html#will-you-add-graphical-models-or-sequence-prediction-to-scikit-learn However, I do believe some techniques could be easily modified for allowing GCN as base models. In particular, the methods that are based on decision space for selecting the best model (KNOP) rather than the original representation as it wouldn't affect how the techniques estimate the similarity between different inputs. Is it possible to provide an example your code? With that I could see if there are ways of applying it to your need and check what would be needed to change in the method's implementation. |
@Menelau Dear Dr. Cruz, thanks for responding to my question.
yes, these are few samples from the training set that I have listed here with their dimension. For example, the first graph has
I do not have any code currently to share with you, but I am thinking of an idea, and I would like to have your opinion on that (either through email or here). If we can measure the similarity between the test sample graph and validation set of each GNN model, can we extend the concept of DES to GNN models? Thank you in advance |
Hi,
Thank you for your great contribution to science.
I have a question and wondering if DESlib can be applied for GCNs or is there any other library similar to DESlib algorithms that they have extended DESlib for dynamic selection of GCNs?
The text was updated successfully, but these errors were encountered: