[BUG] : Provide an full example for hyperparameter optimization for graph-classification-task on a custom dataset using K-FOLD cross validation
Describe the bug A clear and concise description of what the bug is.
To Reproduce Steps to reproduce the behavior:
- Go to '...'
- Click on '....'
- Scroll down to '....'
- See error
Expected behavior A clear and concise description of what you expected to happen.
Screenshots If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
- OS: [e.g. Windows 10]
- python version: [The output of cmd
python -V] - autogl version: [The output of cmd
python -c 'import autogl; print(autogl.__version__)'] - pip list: [the output of cmd
pip list]
Additional Info (Optional) Add any other context about the problem here. Such as the possible reason you think, or how to solve this bug if you are interested.
I used ''graph_cv.py'' module given in your repo to apply K-FOLD cross validation along with hyperparameter optimization for standard dataset. Although I converted my custom dataset using "InMemoryDataset" of torch_geomteric as mentioned in your website yet your module for K-FOLD cross validation (graph_cv.py) is not working for that custom dataset. Ot gives error which indicates that the code does not support this dataset. Can you please provide an example depicting a process where a custom dataset can apply HPO and K-FOLD cross validation using your tool or do I understand that it currently does not support such functions ? Thanks a lot!!