Datasets:
File size: 925 Bytes
0d5451f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | {
"name": "office_localization_data",
"description": "Office Localization dataset. 4 region labels (empty, one, five, two) representing occupancy regions in an office. File-based split: last file per label is test.",
"environment": "office",
"task": "localization",
"labels": ["empty", "five", "one", "two"],
"split_mode": "file",
"files": [
{"path": "empty_1.csv", "label": "empty", "split": "train"},
{"path": "empty_2.csv", "label": "empty", "split": "test"},
{"path": "five_1.csv", "label": "five", "split": "train"},
{"path": "five_2.csv", "label": "five", "split": "test"},
{"path": "one_1.csv", "label": "one", "split": "train"},
{"path": "one_2.csv", "label": "one", "split": "test"},
{"path": "two_1.csv", "label": "two", "split": "train"},
{"path": "two_2.csv", "label": "two", "split": "test"}
]
}
|