Check whether a model exists
import requests
url = "https://{FUSION HOST}/api/ai/ml-models/{modelId}"
response = requests.head(url)
print(response.text)"<string>"Check whether a model exists
Check whether the specified model is deployed.
HEAD
/
ai
/
ml-models
/
{modelId}
Check whether a model exists
import requests
url = "https://{FUSION HOST}/api/ai/ml-models/{modelId}"
response = requests.head(url)
print(response.text)"<string>"Path Parameters
Response
The model is deployed.
The response is of type string.
Was this page helpful?
⌘I