On AzureML Batchendpoint, I'm recently hitting the following error:
Unable to get image details : Environment version Autosave_(date)T(time)Z_******** provided in request doesn't match environ.
when I setup the batch-endpoint with a yml
config:
environment: azureml:env-name:env-version
So, AzureML creates and builds the environment with the version I specify env-version
, which is just a number (in my case = 3).
and then for some weird reason, AzureML creates an extra environment version called Autosave_(date)T(time)Z_********
, which is not built, but based on the previous one just created, and then it becomes the latest
version of that environment.
In summary, AzureML instead of looking for the version that I specified as env-name:3
it seems to be looking for env-name:Autosave_(date)T(time)Z_********
and then throws the error message mentioned above.