tvbat commited on
Commit
0c811f5
·
verified ·
1 Parent(s): 5455602

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md CHANGED
@@ -74,3 +74,42 @@ configs:
74
  - split: test_kz
75
  path: ner_re/test_kz-*
76
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  - split: test_kz
75
  path: ner_re/test_kz-*
76
  ---
77
+ # SciMDIX Dataset
78
+
79
+ ## Dataset Description
80
+ SciMDIX is a bilingual dataset containing scientific abstracts in Russian and Kazakh across four domains: **IT, Linguistics, Medicine, and Psychology**. It is designed for advanced Information Extraction tasks and is divided into two main configurations:
81
+
82
+ 1. **ner_re**: Contains annotations for Named Entity Recognition (NER) and Relation Extraction (RE).
83
+ 2. **aspects**: Contains aspect-level markup (AIM, MATERIAL, METHOD, RESULT, TASK, TOOL, USAGE) for the same texts.
84
+
85
+ ## Data Structure
86
+
87
+ Each configuration contains four splits: `train_ru`, `train_kz`, `test_ru`, and `test_kz`.
88
+ *Note: You can identify the domain of a specific text by looking at the prefix in the `filename` column (`it-`, `ling-`, `med-`, `psy-`).*
89
+
90
+ ### Configuration: `ner_re`
91
+ - `filename`: Original text file name (includes domain prefix).
92
+ - `abstract`: The raw text of the scientific abstract.
93
+ - `annotation`: Text with inline BRAT-style markup `[Entity|ID|TYPE]`.
94
+ - `entities`: Extracted entities in BRAT format.
95
+ - `relations`: Extracted relations between entities.
96
+
97
+ ### Configuration: `aspects`
98
+ - `filename`: Original text file name (includes domain prefix).
99
+ - `abstract`: The raw text of the scientific abstract.
100
+ - `aspect_annotation`: Text with inline aspect markup `[Span|ID|TYPE]`.
101
+ - `aspects`: Extracted aspects in BRAT format.
102
+
103
+ ## How to use
104
+
105
+ You can load the dataset using the `datasets` library. Specify the configuration (`ner_re` or `aspects`) and the split you want to use:
106
+
107
+ ```python
108
+ from datasets import load_dataset
109
+
110
+ # Load the Russian Train split for NER and Relation Extraction
111
+ ds_ner_ru_train = load_dataset("tvbat/SciMDIX", "ner_re", split="train_ru")
112
+ print(ds_ner_ru_train[0])
113
+
114
+ # Load the Kazakh Test split for Aspects
115
+ ds_asp_kz_test = load_dataset("tvbat/SciMDIX", "aspects", split="test_kz")