Hugging Face · JSON Structure

Hugging Face Inference Object Detection Result Structure

Type: object Properties: 3

ObjectDetectionResult is a JSON Structure definition published by Hugging Face, describing 3 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

label score box

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "ObjectDetectionResult",
  "type": "object",
  "properties": {
    "label": {
      "type": "string"
    },
    "score": {
      "type": "number"
    },
    "box": {
      "type": "object"
    }
  }
}