My question centers around working with AML models that have been published as web services, as described here:
https://docs.microsoft.com/en-us/azure/machine-learning/how-to-consume-web-service?tabs=azure-portal
Are there any endpoints or ways of obtaining more detailed information about a published model? For example, the documentation states that inputs to the model are passed in via a "data" property, and obviously, this will vary my the model:
{
"data":
[
<model-specific-data-structure>
]
}
Is there a way to programatically find out what the model expects as input?
The full 'wish-list' of metadata info we'd like is listed here:
What models are available for serving
What is the model prediction endpoint
What are the required inputs and their data types
What are the model outputs and data types
Are there any endpoints or any way at getting to this information?
