I am using the azure ml documentation https://learn.microsoft.com/en-us/azure/machine-learning/tutorial-1st-experiment-bring-data to train a deep learning model. I want to save the model in the specified path. This is my original script run-pytorch-data.py
the train.py script is as follows : train.py
the model is not getting saved in the specified location when I printed the current working directory it gives:
print (os.getcwd())
/mnt/batch/tasks/shared/LS_root/jobs/workspacecvazue/azureml/day1-experiment-data_1646679122_86b0ac64/wd/azureml/day1-experiment-data_1646679122_86b0ac64
how can I save the model in the desired location?