Datasets:
Tasks:
Text Classification
Sub-tasks:
sentiment-classification
Languages:
English
Size:
n<1K
License:
File size: 849 Bytes
d3d3717 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Batalstone 7c Core Stable — Curve Only (ARR)",
"type": "object",
"required": ["scene_idx","valence","arousal","dominance","label","conf","plot_break"],
"properties": {
"scene_idx": { "type": "integer", "minimum": 1, "description": "1-based scene index" },
"valence": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
"arousal": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
"dominance": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
"label": { "type": "string", "description": "Primary emotion label (lexicon v1)" },
"conf": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
"plot_break":{ "type": "boolean", "description": "0/1 in CSV → cast to boolean" }
},
"additionalProperties": false
}
|