An Azure machine learning service for building and deploying models.
@Sahana Gurumurthy (Accenture International Limite) Thanks, I think the problem is that you rely on AML background process to automatically upload content under ./outputs to AML workspace.
But when the upload is not complete and we immediately call run.register_model which takes the content from AML workspace then the error will happen.
To avoid that situation, you can do it like this:
- Persist model (joblib.dump) to a custom folder other than outputs
- Manually run upload_file to upload the model AML workspace. Name the destination same name with your model file.
- Then run run.register_model.