Datasets:
Sean MacAvaney
commited on
Commit
•
b762efe
1
Parent(s):
721c732
model card
Browse files
README.md
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- no-annotation
|
4 |
+
language:
|
5 |
+
- zh
|
6 |
+
language_creators:
|
7 |
+
- found
|
8 |
+
license:
|
9 |
+
- apache-2.0
|
10 |
+
pretty_name: CSL
|
11 |
+
size_categories:
|
12 |
+
- 1M<n<10M
|
13 |
+
source_datasets:
|
14 |
+
- extended|csl
|
15 |
+
tags: []
|
16 |
+
task_categories:
|
17 |
+
- text-retrieval
|
18 |
+
task_ids:
|
19 |
+
- document-retrieval
|
20 |
+
---
|
21 |
+
|
22 |
+
# Dataset Card for CSL
|
23 |
+
|
24 |
+
## Dataset Description
|
25 |
+
|
26 |
+
CSL is the Chinese Scientific Literature Dataset.
|
27 |
+
|
28 |
+
- **Paper:** https://aclanthology.org/2022.coling-1.344
|
29 |
+
- **Repository:** https://github.com/ydli-ai/CSL
|
30 |
+
|
31 |
+
### Dataset Summary
|
32 |
+
|
33 |
+
The dataset contains titles, abstracts, keywords of papers written in Chinese from several academic fields.
|
34 |
+
|
35 |
+
### Languages
|
36 |
+
|
37 |
+
- Chinese
|
38 |
+
|
39 |
+
## Dataset Structure
|
40 |
+
|
41 |
+
### Data Instances
|
42 |
+
|
43 |
+
| Split | Documents |
|
44 |
+
|-----------------|----------:|
|
45 |
+
| `csl` | 396k |
|
46 |
+
|
47 |
+
### Data Fields
|
48 |
+
- `id`: unique identifier for this document
|
49 |
+
- `cc_file`: source file from connon crawl
|
50 |
+
- `time`: extracted date/time from article
|
51 |
+
- `title`: title extracted from article
|
52 |
+
- `text`: extracted article body
|
53 |
+
- `url`: source URL
|
54 |
+
|
55 |
+
## Dataset Usage
|
56 |
+
|
57 |
+
Using 🤗 Datasets:
|
58 |
+
|
59 |
+
```python
|
60 |
+
from datasets import load_dataset
|
61 |
+
|
62 |
+
dataset = load_dataset('neuclir/csl')['csl']
|
63 |
+
```
|
64 |
+
|
65 |
+
## License & Citation
|
66 |
+
|
67 |
+
This dataset is based off the [Chinese Scientific Literature Dataset](https://github.com/ydli-ai/CSL) under Apache 2.0.
|
68 |
+
The primay change is the addition of English translactions of the category and discipline descriptions by a native speaker.
|
69 |
+
|
70 |
+
If you use this data, please cite:
|
71 |
+
|
72 |
+
```
|
73 |
+
@inproceedings{li-etal-2022-csl,
|
74 |
+
title = "{CSL}: A Large-scale {C}hinese Scientific Literature Dataset",
|
75 |
+
author = "Li, Yudong and
|
76 |
+
Zhang, Yuqing and
|
77 |
+
Zhao, Zhe and
|
78 |
+
Shen, Linlin and
|
79 |
+
Liu, Weijie and
|
80 |
+
Mao, Weiquan and
|
81 |
+
Zhang, Hui",
|
82 |
+
booktitle = "Proceedings of the 29th International Conference on Computational Linguistics",
|
83 |
+
month = oct,
|
84 |
+
year = "2022",
|
85 |
+
address = "Gyeongju, Republic of Korea",
|
86 |
+
publisher = "International Committee on Computational Linguistics",
|
87 |
+
url = "https://aclanthology.org/2022.coling-1.344",
|
88 |
+
pages = "3917--3923",
|
89 |
+
}
|
90 |
+
```
|