Update readme
Browse files
README.md
CHANGED
|
@@ -6,6 +6,18 @@ license: cc-by-4.0
|
|
| 6 |
|
| 7 |
A wide-area multi-modal multi-view dataset for action recognition and transformer-based sensor fusion research.
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
## 📖 Paper Reference
|
| 10 |
|
| 11 |
**MultiSensor-Home: A Wide-area Multi-modal Multi-view Dataset for Action Recognition and Transformer-based Sensor Fusion**
|
|
|
|
| 6 |
|
| 7 |
A wide-area multi-modal multi-view dataset for action recognition and transformer-based sensor fusion research.
|
| 8 |
|
| 9 |
+
A simple way to download the dataset:
|
| 10 |
+
```
|
| 11 |
+
from huggingface_hub import snapshot_download
|
| 12 |
+
|
| 13 |
+
snapshot_download(
|
| 14 |
+
repo_id="thanhhff/MultiSensor-Home1",
|
| 15 |
+
repo_type="dataset", # Important: specify that this is a dataset, not a model
|
| 16 |
+
local_dir="dataset", # Destination folder path
|
| 17 |
+
local_dir_use_symlinks=False # Optional: store actual files instead of symlinks
|
| 18 |
+
)
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
## 📖 Paper Reference
|
| 22 |
|
| 23 |
**MultiSensor-Home: A Wide-area Multi-modal Multi-view Dataset for Action Recognition and Transformer-based Sensor Fusion**
|