framolfese commited on
Commit
35e282f
·
verified ·
1 Parent(s): 8c6dfe3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -8
README.md CHANGED
@@ -1,19 +1,112 @@
1
  ---
2
  annotations_creators:
3
- - machine-generated
4
- - human-generated
5
  language:
6
- - en
7
  license:
8
- - cc-by-nc-sa-4.0
9
  source_datasets:
10
- - original
11
  task_categories:
12
- - token-classification
13
  task_ids:
14
- - named-entity-recognition
15
  pretty_name: cner-dataset
16
  tags:
17
- - structure-prediction
 
 
18
  ---
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  annotations_creators:
3
+ - machine-generated
4
+ - human-generated
5
  language:
6
+ - en
7
  license:
8
+ - cc-by-nc-sa-4.0
9
  source_datasets:
10
+ - original
11
  task_categories:
12
+ - token-classification
13
  task_ids:
14
+ - named-entity-recognition
15
  pretty_name: cner-dataset
16
  tags:
17
+ - structure-prediction
18
+ size_categories:
19
+ - 100K<n<1M
20
  ---
21
 
22
+ ## Table of Contents
23
+ - [Description](#description)
24
+ - [Dataset Structure](#dataset-structure)
25
+ - [Additional Information](#additional-information)
26
+
27
+ ## Dataset Card for CNER dataset
28
+
29
+ ## Description
30
+
31
+ - **Summary:** Concept and Named Entity Recognition (CNER) is a novel task that jointly handles the indentification and classification of concepts and named entities.
32
+ - **Repository:** [https://github.com/Babelscape/cner](https://github.com/Babelscape/cner)
33
+ - **Paper:** [coming soon]()
34
+ - **Point of Contact:** {martinelli, molfese, tedeschi, navigli}@diag.uniroma1.it
35
+
36
+ ## Dataset Structure
37
+
38
+ The data fields are the same among all splits.
39
+ - `tokens`: a `list` of `string` features.
40
+ - `pos`: a `list` of `string` features (Part-of-Speech tags).
41
+ - `c_vs_ne`: a `list` of `string` features identifying whether a token is a concept or a named entity.
42
+ - `cner_tags`: a `list` of cner classification labels (`str`).
43
+ - `cner_tags_ids`: a `list` of cner classification labels ids (`int`). Full tagset with indices:
44
+ ```python
45
+ {
46
+ "O": 0,
47
+ "B-ANIMAL": 1,
48
+ "I-ANIMAL": 2,
49
+ "B-DISEASE": 3,
50
+ "I-DISEASE": 4,
51
+ "B-DISCIPLINE": 5,
52
+ "I-DISCIPLINE": 6,
53
+ "B-LANGUAGE": 7,
54
+ "I-LANGUAGE": 8,
55
+ "B-EVENT": 9,
56
+ "I-EVENT": 10,
57
+ "B-FOOD": 11,
58
+ "I-FOOD": 12,
59
+ "B-ARTIFACT": 13,
60
+ "I-ARTIFACT": 14,
61
+ "B-MEDIA": 15,
62
+ "I-MEDIA": 16,
63
+ "B-GROUP": 17,
64
+ "I-GROUP": 18,
65
+ "B-ORG": 19,
66
+ "I-ORG": 20,
67
+ "B-PER": 21,
68
+ "I-PER": 22,
69
+ "B-STRUCT": 23,
70
+ "I-STRUCT": 24,
71
+ "B-LOC": 25,
72
+ "I-LOC": 26,
73
+ "B-PLANT": 27,
74
+ "I-PLANT": 28,
75
+ "B-MONEY": 29,
76
+ "I-MONEY": 30,
77
+ "B-BIOLOGY": 31,
78
+ "I-BIOLOGY": 32,
79
+ "B-MEASURE": 33,
80
+ "I-MEASURE": 34,
81
+ "B-SUPER": 35,
82
+ "I-SUPER": 36,
83
+ "B-CELESTIAL": 37,
84
+ "I-CELESTIAL": 38,
85
+ "B-LAW": 39,
86
+ "I-LAW": 40,
87
+ "B-SUBSTANCE": 41,
88
+ "I-SUBSTANCE": 42,
89
+ "B-PART": 43,
90
+ "I-PART": 44,
91
+ "B-CULTURE": 45,
92
+ "I-CULTURE": 46,
93
+ "B-PROPERTY": 47,
94
+ "I-PROPERTY": 48,
95
+ "B-FEELING": 49,
96
+ "I-FEELING": 50,
97
+ "B-PSYCH": 51,
98
+ "I-PSYCH": 52,
99
+ "B-RELATION": 53,
100
+ "I-RELATION": 54,
101
+ "B-DATETIME": 55,
102
+ "I-DATETIME": 56,
103
+ "B-ASSET": 57,
104
+ "I-ASSET": 58
105
+ }
106
+ ```
107
+
108
+ ## Additional Information
109
+
110
+ - **Licensing Information**: Contents of this repository are restricted to only non-commercial research purposes under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). Copyright of the dataset contents belongs to the original copyright holders.
111
+ - **Citation Information**: coming soon.
112
+ - **Contributions**: Thanks to [@g185](https://github.com/g185), [@framolfese](https://github.com/framolfese) and [@sted97](https://github.com/sted97) for adding this dataset.