CraftSight-Minecraft / state_schema.json
Krows7's picture
Upload folder using huggingface_hub (part 70)
20ca54b verified
Raw
History Blame Contribute Delete
1.23 kB
{
"schema_version": "1.0.0",
"fields": {
"hp": {
"column": "state_hp",
"dtype": "uint8",
"nullable": true,
"description": "Player health points at the frame timestamp."
},
"armor": {
"column": "state_armor",
"dtype": "uint8",
"nullable": true,
"description": "Player armor points."
},
"hunger": {
"column": "state_hunger",
"dtype": "uint8",
"nullable": true,
"description": "Player hunger points."
},
"biome": {
"column": "state_biome",
"dtype": "string",
"nullable": true,
"description": "Minecraft biome name if available."
},
"selected_slot": {
"column": "state_selected_slot",
"dtype": "uint8",
"nullable": true,
"description": "Selected hotbar slot index."
},
"held_item": {
"column": "state_held_item",
"dtype": "string",
"nullable": true,
"description": "Item held in the selected slot."
},
"time_of_day": {
"column": "state_time_of_day",
"dtype": "string",
"nullable": true,
"description": "Coarse time of day label, e.g. day or night."
}
}
}