-
Notifications
You must be signed in to change notification settings - Fork 6
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
Loading custom datasets #6
Comments
You may need to create a folder of your custom dataset in the data/ folder similar to the CiteSeer folder under data/. |
I also started working on loading custom datasets, however I don't know how I could prepare my data into the files in the format acoording to data/CiteSeer folder. Moreover if I use the python train.py --dataset CiteSeer, I ended up with the error
|
Hi @lucky6qi, I had the same issue and the solution is to download the |
@lajd I looked at your code. Looks like you have used datasets available in the pytorch geometric datasets. I want to run it on my data but I don't know how to prepare the data into the format that is used in the code for example those numpy zip files and sparse matrix. I am facing problems in understanding what those files represent and on what basis they are made. |
@lajd Is it possible that the dists file contains the normalized shortest path distances between each pair of nodes? |
same question. have you found the answer? |
Yes, it is the shortest path between each pair of nodes. |
Hello everybody :)
I am working with a custom pipeline for performing link prediction in a graph. I construct this graph through processing of csv data but in the end I obtain an object of class pytorch_geometric.Dataset (the same class as the default ones used in this repo like cora, protein, email...).
I would like to know what part of the code of this repo should I modify to load my custom dataset object for performing link prediction.
Thank you very much!
The text was updated successfully, but these errors were encountered: