Daniil Larionov commited on
Commit
e964fc1
1 Parent(s): 53ae50b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -84
README.md CHANGED
@@ -1,5 +1,3 @@
1
- [Needs More Information]
2
-
3
  # Dataset Card for ru-med-ner
4
 
5
  ## Table of Contents
@@ -10,32 +8,20 @@
10
  - [Dataset Structure](#dataset-structure)
11
  - [Data Instances](#data-instances)
12
  - [Data Fields](#data-instances)
13
- - [Data Splits](#data-instances)
14
- - [Dataset Creation](#dataset-creation)
15
- - [Curation Rationale](#curation-rationale)
16
- - [Source Data](#source-data)
17
- - [Annotations](#annotations)
18
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
19
- - [Considerations for Using the Data](#considerations-for-using-the-data)
20
- - [Social Impact of Dataset](#social-impact-of-dataset)
21
- - [Discussion of Biases](#discussion-of-biases)
22
- - [Other Known Limitations](#other-known-limitations)
23
  - [Additional Information](#additional-information)
24
- - [Dataset Curators](#dataset-curators)
25
- - [Licensing Information](#licensing-information)
26
  - [Citation Information](#citation-information)
27
 
28
  ## Dataset Description
29
 
30
- - **Homepage:** [Needs More Information]
31
- - **Repository:** [Needs More Information]
32
- - **Paper:** [Needs More Information]
33
- - **Leaderboard:** [Needs More Information]
34
- - **Point of Contact:** [Needs More Information]
35
 
36
  ### Dataset Summary
37
 
38
- NER dataset for Russian language, extracted from medical records
39
  See https://github.com/pavel-blinov/RuMedBench for details
40
 
41
  ### Supported Tasks and Leaderboards
@@ -44,80 +30,25 @@ See https://github.com/pavel-blinov/RuMedBench for details
44
 
45
  ### Languages
46
 
47
- ru-RU
48
 
49
  ## Dataset Structure
50
 
51
  ### Data Instances
52
 
53
- ```{"idx": "2472239.tsv_0", "tokens": ["", "?5@2K9", "65", "45=L", "?@8<5=5=8O", "2K?8;0", "5", "B01;5B>:", ",", "?@>A=C;0AL", "=>GLN", "8", "A>=", ":0:", ">B18;>", "."], "ner_tags": ["O", "O", "O", "O", "O", "O", "O", "B-Drugform", "O", "B-ADR", "O", "O", "B-ADR", "I-ADR", "I-ADR", "O"]}```
 
 
54
 
55
  ### Data Fields
56
 
57
- idx: example id
58
- tokens: list of words from example
59
- ner_tags: ner tags
60
-
61
- ### Data Splits
62
-
63
- [Needs More Information]
64
-
65
- ## Dataset Creation
66
-
67
- ### Curation Rationale
68
-
69
- [Needs More Information]
70
-
71
- ### Source Data
72
-
73
- #### Initial Data Collection and Normalization
74
-
75
- [Needs More Information]
76
-
77
- #### Who are the source language producers?
78
-
79
- [Needs More Information]
80
-
81
- ### Annotations
82
-
83
- #### Annotation process
84
-
85
- [Needs More Information]
86
-
87
- #### Who are the annotators?
88
-
89
- [Needs More Information]
90
-
91
- ### Personal and Sensitive Information
92
-
93
- [Needs More Information]
94
-
95
- ## Considerations for Using the Data
96
-
97
- ### Social Impact of Dataset
98
-
99
- [Needs More Information]
100
-
101
- ### Discussion of Biases
102
-
103
- [Needs More Information]
104
-
105
- ### Other Known Limitations
106
-
107
- [Needs More Information]
108
-
109
- ## Additional Information
110
-
111
- ### Dataset Curators
112
-
113
- [Needs More Information]
114
-
115
- ### Licensing Information
116
-
117
- [Needs More Information]
118
 
119
  ### Citation Information
120
 
 
121
  @misc{blinov2022rumedbench,
122
  title={RuMedBench: A Russian Medical Language Understanding Benchmark},
123
  author={Pavel Blinov and Arina Reshetnikova and Aleksandr Nesterov and Galina Zubkova and Vladimir Kokh},
@@ -125,4 +56,5 @@ ner_tags: ner tags
125
  eprint={2201.06499},
126
  archivePrefix={arXiv},
127
  primaryClass={cs.CL}
128
- }
 
 
 
 
1
  # Dataset Card for ru-med-ner
2
 
3
  ## Table of Contents
 
8
  - [Dataset Structure](#dataset-structure)
9
  - [Data Instances](#data-instances)
10
  - [Data Fields](#data-instances)
 
 
 
 
 
 
 
 
 
 
11
  - [Additional Information](#additional-information)
 
 
12
  - [Citation Information](#citation-information)
13
 
14
  ## Dataset Description
15
 
16
+ - **Homepage:** https://github.com/pavel-blinov/RuMedBench
17
+ - **Repository:** https://github.com/pavel-blinov/RuMedBench
18
+ - **Paper:** https://arxiv.org/abs/2201.06499
19
+ - **Leaderboard:** https://github.com/pavel-blinov/RuMedBench
20
+ - **Point of Contact:** Blinov.P.D@sberbank.ru
21
 
22
  ### Dataset Summary
23
 
24
+ NER dataset for Russian language, extracted from medical records\\
25
  See https://github.com/pavel-blinov/RuMedBench for details
26
 
27
  ### Supported Tasks and Leaderboards
 
30
 
31
  ### Languages
32
 
33
+ - ru-RU
34
 
35
  ## Dataset Structure
36
 
37
  ### Data Instances
38
 
39
+ ```javascript
40
+ {"idx": "2472239.tsv_0", "tokens": ["", "?5@2K9", "65", "45=L", "?@8<5=5=8O", "2K?8;0", "5", "B01;5B>:", ",", "?@>A=C;0AL", "=>GLN", "8", "A>=", ":0:", ">B18;>", "."], "ner_tags": ["O", "O", "O", "O", "O", "O", "O", "B-Drugform", "O", "B-ADR", "O", "O", "B-ADR", "I-ADR", "I-ADR", "O"]}
41
+ ```
42
 
43
  ### Data Fields
44
 
45
+ - idx: example id
46
+ - tokens: list of words from example
47
+ - ner_tags: ner tags
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
  ### Citation Information
50
 
51
+ ```
52
  @misc{blinov2022rumedbench,
53
  title={RuMedBench: A Russian Medical Language Understanding Benchmark},
54
  author={Pavel Blinov and Arina Reshetnikova and Aleksandr Nesterov and Galina Zubkova and Vladimir Kokh},
 
56
  eprint={2201.06499},
57
  archivePrefix={arXiv},
58
  primaryClass={cs.CL}
59
+ }
60
+ ```