You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found an issue in the dataset.py file found in the path deeprobust-0.2.8\deeprobust\graph\data which is used when we call Dataset class like
from deeprobust.graph.data import Dataset
This class does not run, when the setting is done as 'prognn' and run on Windows. It throws and error saying that the Dataset has no attribute 'root'.
Error Screenshot -
This bug is because of the following code in line 67 as below
Hi Team,
I found an issue in the dataset.py file found in the path deeprobust-0.2.8\deeprobust\graph\data which is used when we call Dataset class like
from deeprobust.graph.data import Dataset
This class does not run, when the setting is done as 'prognn' and run on Windows. It throws and error saying that the Dataset has no attribute 'root'.
Error Screenshot -
This bug is because of the following code in line 67 as below
if platform.system() == 'Windows':
root = root
else:
self.root = osp.expanduser(osp.normpath(root))
Code Screenshot -
Instead this bug is fixed after a minor modification in the code as
if platform.system() == 'Windows':
self.root = root
else:
self.root = osp.expanduser(osp.normpath(root))
I would like to request to take notice of it.
Thanks,
Ratnadeep
The text was updated successfully, but these errors were encountered: