ZechengLi19 commited on
Commit
05877fe
·
verified ·
1 Parent(s): f8cd89f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -3
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ ---
4
+
5
+ # Summary
6
+ This is the **pose format** dataset proposed in our paper "[**Uni-Sign: Toward Unified Sign Language Understanding at Scale**](https://arxiv.org/abs/2501.15187)".
7
+ CSL-News is a large-scale Chinese Sign Language dataset designed for developing robust sign language understanding models.
8
+
9
+ **Code**: [https://github.com/ZechengLi19/Uni-Sign](https://github.com/ZechengLi19/Uni-Sign)
10
+
11
+ # Download
12
+ <!-- Please refer to [**download script**](https://github.com/ZechengLi19/Uni-Sign/download_scripts/download_CSL_News.py) to download CSL_News. -->
13
+ You can also download each file by ```wget```, for instance:
14
+ ```
15
+ wget https://huggingface.co/datasets/ZechengLi19/CSL-News_pose/main/archive_001.zip
16
+ wget https://huggingface.co/datasets/ZechengLi19/CSL-News_pose/main/archive_002.zip
17
+ wget https://huggingface.co/datasets/ZechengLi19/CSL-News_pose/main/archive_003.zip
18
+ ...
19
+ ```
20
+
21
+ # Usage
22
+ You can unzip each `archive_*.zip` file by ```unzip```, for instance:
23
+ ```
24
+ unzip -j archive_001.zip -d ./CSL_News/pose_format
25
+ unzip -j archive_002.zip -d ./CSL_News/pose_format
26
+ unzip -j archive_003.zip -d ./CSL_News/pose_format
27
+ ...
28
+ ```
29
+ Each zip file contains multiple pickle files. Each pickle file stores a dictionary containing the keys: `keypoints`, `scores`, and `w_h`.
30
+
31
+ ``CSL_News_Labels.json`` and ``CSL_News_Labels.csv`` contains the text-annotations for CSL-News. They can easily be read by
32
+ ```python
33
+ # Read CSL_News_Labels.json
34
+ import json
35
+ with open('CSL_News_Labels.json', 'r', encoding='utf-8') as f:
36
+ data = json.load(f)
37
+ # Read CSL_News_Labels.csv
38
+ import pandas
39
+ data = pandas.read_csv("CSL_News_Labels.csv")
40
+ ```
41
+
42
+ # Other format
43
+ The **RGB format** CSL-News dataset can be found [**here**](https://huggingface.co/datasets/ZechengLi19/CSL-News).
44
+
45
+ # License
46
+ CSL-News is released under the CC-BY-NC-4.0 license. The video samples in this dataset are collected from publicly available web videos. Users must ensure that their use of these video samples is strictly non-commercial.
47
+
48
+ # Why Non-Commercial?
49
+ The video samples in CSL-News are sourced from web videos, and their copyright belongs to the original content creators. While this dataset is provided for research purposes under the CC-BY-NC-4.0 license, commercial use of these videos may infringe upon the rights of the original creators. To respect their rights and ensure ethical use, we strictly enforce a non-commercial usage policy for CSL-News.
50
+
51
+ # Citation
52
+ ```
53
+ @article{li2025uni-sign,
54
+ title={Uni-Sign: Toward Unified Sign Language Understanding at Scale},
55
+ author={Li, Zecheng and Zhou, Wengang and Zhao, Weichao and Wu, Kepeng and Hu, Hezhen and Li, Houqiang},
56
+ journal={arXiv preprint arXiv:2501.15187},
57
+ year={2025}
58
+ }
59
+ ```