TensorFlow · Example Payload

Tensorflow Serving Model Status Example

Example request to retrieve the status of a deployed TensorFlow model

AIDeep LearningJavaScriptMachine LearningModel ServingNeural NetworksOpen SourcePython

Tensorflow Serving Model Status Example is an example object payload from TensorFlow, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "TensorFlow Serving Get Model Status",
  "description": "Example request to retrieve the status of a deployed TensorFlow model",
  "request": {
    "method": "GET",
    "url": "http://localhost:8501/v1/models/my_image_classifier",
    "headers": {}
  },
  "response": {
    "status": 200,
    "body": {
      "model_version_status": [
        {
          "version": 1,
          "state": "AVAILABLE",
          "status": {}
        },
        {
          "version": 2,
          "state": "AVAILABLE",
          "status": {}
        }
      ]
    }
  }
}