-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to invoke batch endpoint with input parameter of type mlflow_model #32761
Comments
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @azureml-github @Azure/azure-ml-sdk. |
Hi @AtleH. Thanks for reaching out and taking the time to report the issue. We appreciate the feedback! We confirm this was a bug in our CLI/SDK and a fix has been issued. It should be included in the next release coming next week. I will update the thread once published. |
Tested with version 1.12.1, but still producing the same error. |
This is also an issue with endpoints as well: azure.ai.ml.exceptions.ValidationException: Failed to extract version when parsing asset //locations//workspaces/<workspace_id>/environments/<environment_name>/versions/2 of type environments as arm id. Version must be provided. Switching to /locations//workspaces/<workspace_id>/environments/<environment_name>:2 gets past this validation error, but then mangles the environment ARM id by appending azureml://locations//workspaces/<workspace_id>/environments/<environment_name>:2 to an ARM id: azure.ai.ml.exceptions.ValidationException: { |
Thanks for reporting this issue. We are analyzing the issue and will provide an update shortly. |
Any update on this? |
I was also having the same issue as above when running the code shown below:
It appears from the error message that See the section later in the documentation, when invoking the endpoint only types |
Describe the bug
Invoking a batch endpoint and providing a reference to a model in a registry as input doesn't seem to work.
Invoking a batch endpoint by calling
and providing an input parameter like this:
fails during with this message:
The problem seems to arise during validation of the input, i.e. before it hits any infrastructure.
To Reproduce
Steps to reproduce the behavior:
Running the above produces this output:
Expected behavior
The batch endpoint should be invoked with the given parameters.
Screenshots
Additional context
Problem also reported for the az cli: Azure/azure-cli#27685
The text was updated successfully, but these errors were encountered: