Point train split to compressed viewer manifest
#7
by hlyyyyy - opened
README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
# GestureHYDRA: Semantic Co-speech Gesture Synthesis via Hybrid Modality Diffusion Transformer and Cascaded-Synchronized Retrieval-Augmented Generation.ICCV 2025
|
| 5 |
|
|
@@ -12,7 +21,7 @@ license: cc-by-nc-4.0
|
|
| 12 |
- The unseen test set contains 998 clips of data, where the anchor ID has never appeared in the training set.
|
| 13 |
|
| 14 |
## Dataset structure
|
| 15 |
-
The dataset contains three folders: *train*, *test_seen*, and *test_unseen*. Let's
|
| 16 |
|
| 17 |
```plaintext
|
| 18 |
-train/
|
|
@@ -27,6 +36,10 @@ The dataset contains three folders: *train*, *test_seen*, and *test_unseen*. Let
|
|
| 27 |
```
|
| 28 |
The audio data in the audios folder corresponds one-to-one with the human motion data in the gestures folder.
|
| 29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
Data contained in the pkl file:
|
| 32 |
- width, height: the video width and height
|
|
@@ -43,4 +56,4 @@ Data contained in the pkl file:
|
|
| 43 |
- right_hand_pose: (bs,15x3)
|
| 44 |
- leye_pose: (bs,3)
|
| 45 |
- reye_pose: (bs,3)
|
| 46 |
-
- pose_embedding: (bs,32)
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
+
configs:
|
| 4 |
+
- config_name: default
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: viewer/train_metadata.csv.gz
|
| 8 |
+
- split: test_seen
|
| 9 |
+
path: viewer/test_seen_metadata.csv
|
| 10 |
+
- split: test_unseen
|
| 11 |
+
path: viewer/test_unseen_metadata.csv
|
| 12 |
---
|
| 13 |
# GestureHYDRA: Semantic Co-speech Gesture Synthesis via Hybrid Modality Diffusion Transformer and Cascaded-Synchronized Retrieval-Augmented Generation.ICCV 2025
|
| 14 |
|
|
|
|
| 21 |
- The unseen test set contains 998 clips of data, where the anchor ID has never appeared in the training set.
|
| 22 |
|
| 23 |
## Dataset structure
|
| 24 |
+
The dataset contains three folders: *train*, *test_seen*, and *test_unseen*. Let's *train* train as an example for introduction.
|
| 25 |
|
| 26 |
```plaintext
|
| 27 |
-train/
|
|
|
|
| 36 |
```
|
| 37 |
The audio data in the audios folder corresponds one-to-one with the human motion data in the gestures folder.
|
| 38 |
|
| 39 |
+
For the Hugging Face Dataset Viewer, this repository also includes lightweight
|
| 40 |
+
CSV manifests under `viewer/`. They index each clip in the zip archives so the
|
| 41 |
+
viewer can render a table without scanning the full raw payload.
|
| 42 |
+
|
| 43 |
|
| 44 |
Data contained in the pkl file:
|
| 45 |
- width, height: the video width and height
|
|
|
|
| 56 |
- right_hand_pose: (bs,15x3)
|
| 57 |
- leye_pose: (bs,3)
|
| 58 |
- reye_pose: (bs,3)
|
| 59 |
+
- pose_embedding: (bs,32)
|