Scalable Inference Serving · Example Payload

Kserve Get Model Metadata Example

AICNCFDeploymentInferenceKubernetesLLMMachine LearningModel ServingMLOpsScalability

Kserve Get Model Metadata Example is an example object payload from Scalable Inference Serving, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://inference.kserve.example.com/v2/models/resnet50-image-classifier",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "name": "resnet50-image-classifier",
      "versions": ["1", "2", "3"],
      "platform": "tensorflow_savedmodel",
      "inputs": [
        {
          "name": "input_image",
          "datatype": "FP32",
          "shape": [-1, 224, 224, 3]
        }
      ],
      "outputs": [
        {
          "name": "class_probabilities",
          "datatype": "FP32",
          "shape": [-1, 1000]
        }
      ]
    }
  }
}