DaehanKim / vgae_pytorch

This repository implements variational graph auto encoder by Thomas Kipf.
MIT License
385 stars 73 forks source link

Run the model with other data #9

Closed gaoshihao333 closed 1 year ago

gaoshihao333 commented 1 year ago

How do I turn other data into data that this code can use?

DaehanKim commented 1 year ago

Hi @qingninggo! I'm afraid I don't provide additional preprocessing scripts so you need to build your own. I recommend you to unpickle data binary files to inspect the structure. You can put break point here(https://github.com/DaehanKim/vgae_pytorch/blob/master/input_data.py#L20) to see how each data file is organised.

gaoshihao333 commented 1 year ago

Thanks for replying, I have solved the problem, have a nice day!