Is Model Serving REST API available?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2022 03:05 AM
This is mentioned in:
https://learn.microsoft.com/en-us/azure/databricks/mlflow/create-manage-serverless-model-endpoints
with api call example, while in:
it is mentioned that the functionality will be available shortly.
It is also possible that my request is simply bad:
import requests
url = '/preview/model-serving-api/endpoints-v2/enable'
data_json = {
"registered_model_name": model_name
}
headers = {
"Authorization": f"Bearer {token}",
"Content-Type": "application/json",
}
u = host + '/api' + url
response = requests.request(method='POST', headers=headers, url=u, json=data_json)
Thanks in advance!
- Labels:
-
Model Serving REST API
-
Rest API

