Update readme with download instructions
Browse files
README.md
CHANGED
|
@@ -129,4 +129,61 @@ The dataloader uses this JSONL as the centralized index to locate and load all r
|
|
| 129 |
4. Optionally load `.pt` behavioral feature tensors.
|
| 130 |
5. Construct the multimodal sample for training or evaluation.
|
| 131 |
|
| 132 |
-
This unified indexing structure enables heterogeneous behavioral datasets to be standardized under a single multimodal evaluation framework.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 129 |
4. Optionally load `.pt` behavioral feature tensors.
|
| 130 |
5. Construct the multimodal sample for training or evaluation.
|
| 131 |
|
| 132 |
+
This unified indexing structure enables heterogeneous behavioral datasets to be standardized under a single multimodal evaluation framework.
|
| 133 |
+
|
| 134 |
+
---
|
| 135 |
+
|
| 136 |
+
# Instructions to Download the Full Benchmark (JSONLs + Raw Media)
|
| 137 |
+
|
| 138 |
+
The dataset consists of:
|
| 139 |
+
|
| 140 |
+
- JSONL split files at the repository root
|
| 141 |
+
- Multipart tar archive under `parts/`
|
| 142 |
+
|
| 143 |
+
Files:
|
| 144 |
+
|
| 145 |
+
```
|
| 146 |
+
parts/human_behaviour_data.tar.part-000
|
| 147 |
+
...
|
| 148 |
+
parts/human_behaviour_data.tar.part-009
|
| 149 |
+
```
|
| 150 |
+
|
| 151 |
+
You must download **both** the JSONLs and the archive parts.
|
| 152 |
+
|
| 153 |
+
---
|
| 154 |
+
|
| 155 |
+
# Recommended Method — Using huggingface-cli
|
| 156 |
+
|
| 157 |
+
If you have sufficient disk space, this is the simplest and safest approach:
|
| 158 |
+
|
| 159 |
+
```bash
|
| 160 |
+
pip install -U "huggingface_hub[cli]"
|
| 161 |
+
huggingface-cli login
|
| 162 |
+
|
| 163 |
+
huggingface-cli download keentomato/human_behavior_atlas \
|
| 164 |
+
--repo-type dataset \
|
| 165 |
+
--local-dir hba_download \
|
| 166 |
+
--local-dir-use-symlinks False
|
| 167 |
+
```
|
| 168 |
+
|
| 169 |
+
Then merge and extract:
|
| 170 |
+
|
| 171 |
+
```bash
|
| 172 |
+
cd hba_download
|
| 173 |
+
cat parts/human_behaviour_data.tar.part-* > human_behaviour_data.tar
|
| 174 |
+
tar -xf human_behaviour_data.tar
|
| 175 |
+
```
|
| 176 |
+
|
| 177 |
+
After extraction, your directory structure will look like:
|
| 178 |
+
|
| 179 |
+
```
|
| 180 |
+
hba_download/
|
| 181 |
+
├── final_v8_train_cleaned_2.jsonl
|
| 182 |
+
├── final_v8_val_cleaned.jsonl
|
| 183 |
+
├── final_v8_test_cleaned.jsonl
|
| 184 |
+
├── pose/
|
| 185 |
+
├── opensmile/
|
| 186 |
+
├── cremad_dataset_audio/
|
| 187 |
+
├── ...
|
| 188 |
+
```
|
| 189 |
+
|