IlyaGusev commited on
Commit
02833d4
1 Parent(s): 779890a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -1
README.md CHANGED
@@ -24,4 +24,58 @@ language:
24
  size_categories:
25
  - 1M<n<10M
26
  ---
27
- # Dataset Card for ru_news
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  size_categories:
25
  - 1M<n<10M
26
  ---
27
+
28
+ # RuNews dataset
29
+
30
+ ## Table of Contents
31
+ - [Table of Contents](#table-of-contents)
32
+ - [Description](#description)
33
+ - [Usage](#usage)
34
+ - [Data Instances](#data-instances)
35
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
36
+
37
+ ## Description
38
+
39
+ **Summary:** Dataset of news from several sources:
40
+ * [Lenta.ru by yutkin](https://github.com/yutkin/Lenta.Ru-News-Dataset)
41
+ * [Several sources by buriy](https://github.com/buriy/russian-nlp-datasets/releases)
42
+ * [ODS Newsviz Tass](https://github.com/newsviz/newsviz)
43
+ * [Taiga fontanka](https://tatianashavrina.github.io/taiga_site/)
44
+
45
+ **Script:** [create_ru_news.py](https://github.com/IlyaGusev/rulm/blob/master/data_processing/create_ru_news.py)
46
+
47
+ **Point of Contact:** [Ilya Gusev](ilya.gusev@phystech.edu)
48
+
49
+ **Languages:** Russian.
50
+
51
+
52
+ ## Usage
53
+
54
+ Prerequisites:
55
+ ```bash
56
+ pip install datasets zstandard jsonlines pysimdjson
57
+ ```
58
+
59
+ Dataset iteration:
60
+ ```python
61
+ from datasets import load_dataset
62
+ dataset = load_dataset('IlyaGusev/ru_news', split="train", streaming=True)
63
+ for example in dataset:
64
+ print(example["text"])
65
+ ```
66
+
67
+ ## Data Instances
68
+
69
+ ```
70
+ {
71
+ "title": "Заместитель главы района в Якутии пожаловался на пьянство начальника",
72
+ "text": "Заместитель главы Нерюнгринского района Якутии Геннадий Ленц пожаловался руководителю республики Егору Борисову на своего начальника. Как рассказал Ленц 'Интерфаксу', Андрей Фитисов пьет на рабочем месте и 'уходит в многодневные загулы'...",
73
+ "timestamp": 1346284800,
74
+ "url": "https://lenta.ru/news/2012/08/30/alco/",
75
+ "source": "lenta"
76
+ }
77
+ ```
78
+
79
+ ## Personal and Sensitive Information
80
+
81
+ The dataset is not anonymized, so individuals' names can be found in the dataset. Information about the original authors is included in the dataset where possible.