@Max CH Thanks for the question. Here is the document for Azure ML Batch endpoint for Batch scoring and Troubleshooting batch endpoints.
Here is a sample that does AutoML Batch Scoring that can help.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I built a model using auto ML and deployed it as a batch endpoint.
When I re-use the same dataset I used to train the data I get an error:
ValueError: Length mismatch: Expected axis has 1 elements, new values have 7 elements
I assume, I have to convert the whole thing into some kind of batch first?
I didn't find documentation on how to convert a structured table dataset to a batch. Does anyone know how to do this?
Thank you for the help, best, Max
@Max CH Thanks for the question. Here is the document for Azure ML Batch endpoint for Batch scoring and Troubleshooting batch endpoints.
Here is a sample that does AutoML Batch Scoring that can help.
Hi Max, I don't how you shaped the data, but I tried to do the below:
Is your data somewhere expecting to be reshaped into minibatch_size=(350,1) in the second axis?...because the error says "ValueError: Length mismatch: Expected axis has 1 elements, new values have 7 elements"