Datasets:

Modalities:
Text
Video
Formats:
json
Languages:
Chinese
ArXiv:
Libraries:
Datasets
pandas
License:
ZechengLi19 commited on
Commit
2adf44a
·
verified ·
1 Parent(s): 28e32d6

Update README.md

Browse files

Add some readme, CSL-News dataset is still under construction.

Files changed (1) hide show
  1. README.md +58 -3
README.md CHANGED
@@ -1,3 +1,58 @@
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 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/rgb-dataset/main/archive_001.zip
16
+ wget https://huggingface.co/datasets/ZechengLi19/rgb-dataset/main/archive_002.zip
17
+ wget https://huggingface.co/datasets/ZechengLi19/rgb-dataset/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
25
+ unzip -j archive_002.zip -d ./CSL_News
26
+ unzip -j archive_003.zip -d ./CSL_News
27
+ ...
28
+ ```
29
+
30
+ ``CSL_News_Labels.json`` and ``CSL_News_Labels.csv`` contains the text-annotations for CSL-News. They can easily be read by
31
+ ```python
32
+ # Read CSL_News_Labels.json
33
+ import json
34
+ with open('CSL_News_Labels.json', 'r', encoding='utf-8') as f:
35
+ data = json.load(f)
36
+ # Read CSL_News_Labels.csv
37
+ import pandas
38
+ data = pandas.read_csv("CSL_News_Labels.csv")
39
+ ```
40
+
41
+ # Other format
42
+ We also provide the CSL-News dataset in a pre-extracted pose format. Please refer to [**here**](https://huggingface.co/datasets/ZechengLi19/CSL-News).
43
+
44
+ # License
45
+ 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.
46
+
47
+ # Why Non-Commercial?
48
+ 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.
49
+
50
+ # Citation
51
+ ```
52
+ @article{li2025uni-sign,
53
+ title={Uni-Sign: Toward Unified Sign Language Understanding at Scale},
54
+ author={Li, Zecheng and Zhou, Wengang and Zhao, Weichao and Wu, Kepeng and Hu, Hezhen and Li, Houqiang},
55
+ journal={arXiv preprint arXiv:2501.15187},
56
+ year={2025}
57
+ }
58
+ ```