Datasets:
Sean MacAvaney
commited on
Commit
•
4eb9813
1
Parent(s):
1a8c055
dataset revision
Browse files- README.md +6 -5
- csl.py +3 -3
- data/csl.jsonl.gz +2 -2
README.md
CHANGED
@@ -48,10 +48,10 @@ The dataset contains titles, abstracts, keywords of papers written in Chinese fr
|
|
48 |
- `title`: title of the paper
|
49 |
- `abstract`: abstract of the paper
|
50 |
- `keywords`: keywords associated with the paper
|
51 |
-
- `category`:
|
52 |
-
- `
|
53 |
-
- `discipline`:
|
54 |
-
- `
|
55 |
|
56 |
## Dataset Usage
|
57 |
|
@@ -66,7 +66,8 @@ dataset = load_dataset('neuclir/csl')['csl']
|
|
66 |
## License & Citation
|
67 |
|
68 |
This dataset is based off the [Chinese Scientific Literature Dataset](https://github.com/ydli-ai/CSL) under Apache 2.0.
|
69 |
-
The primay change is the addition of English translactions of the category and discipline descriptions by a native speaker
|
|
|
70 |
|
71 |
If you use this data, please cite:
|
72 |
|
|
|
48 |
- `title`: title of the paper
|
49 |
- `abstract`: abstract of the paper
|
50 |
- `keywords`: keywords associated with the paper
|
51 |
+
- `category`: the broad category of the paper
|
52 |
+
- `category_eng`: English translaction of the broad category (e.g., Engineering)
|
53 |
+
- `discipline`: academic discipline of the paper
|
54 |
+
- `discipline_eng`: English translation of the academic discipline (e.g., Agricultural Engineering)
|
55 |
|
56 |
## Dataset Usage
|
57 |
|
|
|
66 |
## License & Citation
|
67 |
|
68 |
This dataset is based off the [Chinese Scientific Literature Dataset](https://github.com/ydli-ai/CSL) under Apache 2.0.
|
69 |
+
The primay change is the addition of `doc_id`s, English translactions of the category and discipline descriptions by a native speaker,
|
70 |
+
and basic de-duplication. Code that performed this modification is avalable in [this repository](https://github.com/NeuCLIR/csl-preprocess).
|
71 |
|
72 |
If you use this data, please cite:
|
73 |
|
csl.py
CHANGED
@@ -7,7 +7,7 @@ _URLS = {
|
|
7 |
}
|
8 |
|
9 |
class Csl(datasets.GeneratorBasedBuilder):
|
10 |
-
VERSION = datasets.Version("1.
|
11 |
|
12 |
def _info(self):
|
13 |
return datasets.DatasetInfo(
|
@@ -17,9 +17,9 @@ class Csl(datasets.GeneratorBasedBuilder):
|
|
17 |
"abstract": datasets.Value("string"),
|
18 |
"keywords": datasets.Sequence(feature=datasets.Value("string"), length=-1),
|
19 |
"category": datasets.Value("string"),
|
20 |
-
"
|
21 |
"discipline": datasets.Value("string"),
|
22 |
-
"
|
23 |
}),
|
24 |
)
|
25 |
|
|
|
7 |
}
|
8 |
|
9 |
class Csl(datasets.GeneratorBasedBuilder):
|
10 |
+
VERSION = datasets.Version("1.1.0")
|
11 |
|
12 |
def _info(self):
|
13 |
return datasets.DatasetInfo(
|
|
|
17 |
"abstract": datasets.Value("string"),
|
18 |
"keywords": datasets.Sequence(feature=datasets.Value("string"), length=-1),
|
19 |
"category": datasets.Value("string"),
|
20 |
+
"category_eng": datasets.Value("string"),
|
21 |
"discipline": datasets.Value("string"),
|
22 |
+
"discipline_eng": datasets.Value("string"),
|
23 |
}),
|
24 |
)
|
25 |
|
data/csl.jsonl.gz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:749c758e11b7e4d14f3e0d0a1e2cde4ac876fb155e8cdb8f72d2861398b0814e
|
3 |
+
size 115749077
|