File size: 2,226 Bytes
8345698
686154a
 
 
 
 
 
 
 
 
 
 
 
 
8345698
686154a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
pretty_name: SignSparK Data (CSL-Daily & How2Sign SMPL-X pose features)
license: other
language:
  - zh
  - en
tags:
  - sign-language
  - sign-language-production
  - pose
  - smpl-x
  - flow-matching
size_categories:
  - 1K<n<10K
---

# SignSparK Data

Prebuilt LMDB datasets for **SignSparK: Efficient Multilingual Sign Language
Production via Sparse Keyframe Learning** (ECCV 2026). Contains SMPL-X 6D pose
features, spoken-language translations, glosses, and per-frame segment
annotations for **CSL-Daily** and **How2Sign**, ready to train/sample with the
[SignSparK code](https://github.com/JianHe0628/SignSparK).

- ๐Ÿ“„ Paper: https://arxiv.org/abs/2603.10446
- ๐ŸŒ Project page: https://cogvis-cvssp.github.io/papers/signspark/

## Contents

```
train/  CSL-Daily_reopt_train.lmdb   How2Sign_reopt_train.lmdb
dev/    CSL-Daily_reopt_dev.lmdb     How2Sign_reopt_dev.lmdb
test/   CSL-Daily_reopt_test.lmdb    How2Sign_reopt_test.lmdb
```

Each `.lmdb` holds one `__meta__` key (clip index) plus one in-memory `.npz`
blob per clip with: `language`, `translation`, `gloss`, `segment` (per-frame
{0,1,2}), and `left/right/body/face_features` (6D rotations). Full schema in the
repo's [`DATA.md`](https://github.com/JianHe0628/SignSparK/blob/main/DATA.md).

## Usage

```bash
python tools/download_data.py --datasets CSL-Daily How2Sign --dest ./data
export DATA_ROOT=$(pwd)/data
python tools/inspect_lmdb.py ${DATA_ROOT}/lmdb/train/CSL-Daily_reopt_train.lmdb
```

## License & terms

These are SMPL-X pose features **derived from** the CSL-Daily and How2Sign
corpora and are released for **non-commercial research use** under the terms of
the original datasets. Obtain and comply with each source dataset's license:

- CSL-Daily: https://ustc-slr.github.io/datasets/2021_csl_daily/
- How2Sign: https://how2sign.github.io/

## Citation

```bibtex
@inproceedings{low2026signspark,
  title     = {SignSparK: Efficient Multilingual Sign Language Production via Sparse Keyframe Learning},
  author    = {Low, Jianhe and Symeonidis-Herzig, Alexandre and Ivashechkin, Maksym and Sincan, {\"O}zge Mercano{\u{g}}lu and Bowden, Richard},
  booktitle = {European Conference on Computer Vision (ECCV)},
  year      = {2026}
}
```