neuroailab / physics_prediction

Codes for paper "Flexible Neural Representation for Physics Prediction".

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AssertionError: Dataset 14_world_dataset not existing!

NagabhushanSN95 opened this issue · comments

Hi,
I'm trying to run your code. I created a conda environment and installed Python 2.7 in it and the tf version you mentioned.
When I run the script test_physics_qual.sh, I'm getting the below error

Traceback (most recent call last):
  File "test.py", line 134, in <module>
    main()
  File "test.py", line 125, in main
    test_class = TestFramework(args)
  File "test.py", line 17, in __init__
    self.param_setter = ParameterSetter(args)
  File "/home/nagabhushan/HDD01/Data/07) IISc/Research/06_Physics_and_Naturalness/Workspace/Literature/01_FNRPP/src/original/scripts/param_setter.py", line 30, in __init__
    self._set_multi_data()
  File "/home/nagabhushan/HDD01/Data/07) IISc/Research/06_Physics_and_Naturalness/Workspace/Literature/01_FNRPP/src/original/scripts/param_setter.py", line 64, in _set_multi_data
    "Dataset %s not existing!" % dataset 
AssertionError: Dataset 14_world_dataset not existing!

This is caused because the directory _data_path = os.path.join(dataset, 'new_tfdata') doesn't exist. However, the data folder you've provided contains new_tfdata directly and no 14_world_dataset.

Can you please clarify?