Hugging Face · Schema

ClassificationResult

Properties

Name Type Description
label string The predicted label
score number Confidence score for the label
View JSON Schema on GitHub

JSON Schema

hugging-face-classificationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClassificationResult",
  "title": "ClassificationResult",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "The predicted label",
      "example": "POSITIVE"
    },
    "score": {
      "type": "number",
      "format": "float",
      "description": "Confidence score for the label",
      "example": 0.9998
    }
  }
}