shershen commited on
Commit
0242fb6
1 Parent(s): c07d523

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ dataset_info:
4
+ features:
5
+ - name: word
6
+ dtype: string
7
+ - name: form
8
+ dtype: string
9
+ - name: sentence
10
+ dtype: string
11
+ - name: paraphrase
12
+ dtype: string
13
+ splits:
14
+ - name: train
15
+ num_bytes: 479901
16
+ num_examples: 999
17
+ - name: test
18
+ num_bytes: 42351
19
+ num_examples: 85
20
+ download_size: 290128
21
+ dataset_size: 522252
22
+ task_categories:
23
+ - text-generation
24
+ - text2text-generation
25
+ language:
26
+ - ru
27
+ size_categories:
28
+ - 1K<n<10K
29
  ---
30
+
31
+ # Dataset Card for Ru Anglicism
32
+
33
+ ## Table of Contents
34
+ - [Table of Contents](#table-of-contents)
35
+ - [Dataset Description](#dataset-description)
36
+ - [Dataset Summary](#dataset-summary)
37
+ - [Languages](#languages)
38
+ - [Dataset Structure](#dataset-structure)
39
+ - [Data Instances](#data-instances)
40
+ - [Data Splits](#data-splits)
41
+
42
+ ## Dataset Description
43
+
44
+ ### Dataset Summary
45
+
46
+ Dataset for detection and substraction anglicisms from sentences in Russian. Sentences with anglicism automatically parsed from National Corpus of the Russian language, Habr and Pikabu. The paraphrases for the sentences were created manually.
47
+
48
+ ### Languages
49
+
50
+ The dataset is in Russian.
51
+
52
+ ### Usage
53
+
54
+ Loading dataset:
55
+ ```python
56
+ from datasets import load_dataset
57
+ dataset = load_dataset('shershen/ru_anglicism')
58
+ ```
59
+
60
+ ## Dataset Structure
61
+
62
+ ### Data Instunces
63
+
64
+ For each instance, there are four strings: word, form, sentence and paraphrase.
65
+
66
+ ```
67
+ {
68
+ 'word': 'коллаб',
69
+ 'form': 'коллабу',
70
+ 'sentence': 'Сделаем коллабу, раскрутимся.',
71
+ 'paraphrase': 'Сделаем совместный проект, раскрутимся.'
72
+ }
73
+ ```
74
+
75
+ ### Data Splits
76
+
77
+ Full dataset contains 1084 sentences. Split of dataset is:
78
+
79
+ | Dataset Split | Number of Rows
80
+ |:---------|:---------|
81
+ | Train | 1007 |
82
+ | Test | 77 |