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-inference-classification-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ClassificationResult",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "The predicted label"
    },
    "score": {
      "type": "number",
      "description": "Confidence score for the label"
    }
  }
}