vijaydwivedi75 / lrgb

Long Range Graph Benchmark, NeurIPS 2022 Track on D&B
MIT License
149 stars 18 forks source link

ModuleNotFoundError: No module named 'lrgb' #4

Closed viktor-ktorvi closed 1 year ago

viktor-ktorvi commented 1 year ago

Hi,

So I wanted to import this repo as a module. I installed it through conda as pip install git+https://github.com/vijaydwivedi75/lrgb.git. I've done the same with the GraphGPS repo.

When I run this simple piece of code: import graphgps import lrgb

I get ModuleNotFoundError: No module named 'lrgb'.

Notice that the graphgps module imports without problems which leads me to believe the problem is in the lrgb repo and for the life of me I cannot figure it out.

I'd be very happy to get any suggestion. Thanks!

vijaydwivedi75 commented 1 year ago

Hi @viktor-ktorvi, the LRGB datasets can be run in GraphGPS without importing additional lrgb module. The datasets are simply loaded using GraphGPS loaders (see here for an example) and can be run using example commands from the root directory as mentioned here.

viktor-ktorvi commented 1 year ago

Great! Thanks very much!