Skip to content
Advertisement

azureml score.py not reading additional json file

I have a json file which I am using in score.py however, it is not being found. When making a post request to the endpoint I get the following error “No such file or directory: ‘/var/azureml-app/model_adjustments.json'”

json file is in the same folder as score.py and calling it from a script

JavaScript

in my score.py file i have the following

JavaScript

I know its to do with the json file because when I remove everything to do with it there is no error when doing a post request. I get back a value like I expected. not sure why its not reading the json file

Advertisement

Answer

I have had not time to try this out, but I would assume that the score.py file (and any files in the same directory) will not be in the os.getcwd().

I would try to use __file__ to get the path of score.py:

so, instead of:

JavaScript

rather try:

JavaScript

(Note: realpath is there to make sure symlinks are properly resolved)

Advertisement