json-schema-text-classifier / examples /topic_classification.json
davanstrien's picture
davanstrien HF Staff
Rewrite as clean HTML/JS app with dynamic label management
161b93c
raw
history blame contribute delete
462 Bytes
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"topic": {
"type": "string",
"enum": [
"technology",
"health",
"finance",
"education",
"entertainment",
"sports",
"politics",
"science",
"business",
"lifestyle"
],
"description": "Classification into one of 10 categories"
}
},
"required": ["topic"]
}