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
Confirming that even when the test suite is run from the command line, the same error is triggered:
❯ python test_models.py
Traceback (most recent call last):
File "/Users/cfonnesbeck/GitHub/pyro-models/tests/test_models.py", line 57, in <module>
main(args)
File "/Users/cfonnesbeck/GitHub/pyro-models/tests/test_models.py", line 39, in main
data = pyro_models.data(model_dict)
File "/Users/cfonnesbeck/miniforge3/envs/pyro/lib/python3.9/site-packages/Pyro_Models-0.0.0-py3.9.egg/pyro_models/utils.py", line 51, in data
data = json_file_to_mem_format(model['data_file'])
KeyError: 'data_file'
Attempting to run any of the models using the approach in the test script results in a
KeyError
. For example,Results in:
Looking at the
model_dict
, there is indeed no'data_file'
key:The text was updated successfully, but these errors were encountered: