Update README.md
Browse files
README.md
CHANGED
@@ -78,43 +78,38 @@ dataset_info:
|
|
78 |
dataset_size: 3013377174
|
79 |
---
|
80 |
|
81 |
-
#
|
82 |
|
83 |
## Table of Contents
|
84 |
- [Table of Contents](#table-of-contents)
|
85 |
-
- [
|
86 |
-
|
87 |
-
|
88 |
-
- [Dataset Structure](#dataset-structure)
|
89 |
-
- [Data Instances](#data-instances)
|
90 |
- [Dataset Creation](#dataset-creation)
|
91 |
- [Curation Rationale](#curation-rationale)
|
92 |
- [Source Data](#source-data)
|
93 |
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
94 |
- [Licensing Information](#licensing-information)
|
95 |
|
96 |
-
##
|
97 |
|
98 |
-
**Summary
|
99 |
|
100 |
**Script:** [create_stackoverflow.py](https://github.com/IlyaGusev/rulm/blob/hf/data_processing/create_stackoverflow.py)
|
101 |
|
102 |
**Point of Contact:** [Ilya Gusev](ilya.gusev@phystech.edu)
|
103 |
|
104 |
-
|
105 |
|
106 |
-
The dataset is in Russian with some programming code.
|
107 |
|
108 |
-
|
109 |
|
110 |
```python
|
111 |
from datasets import load_dataset
|
112 |
dataset = load_dataset('IlyaGusev/ru_stackoverflow', split="train")
|
113 |
```
|
114 |
|
115 |
-
##
|
116 |
-
|
117 |
-
### Data Instances
|
118 |
For each instance, there is a string for the article, a string for the summary, and a string for the url. Additionally, a string for the title and a date are provided.
|
119 |
|
120 |
```
|
|
|
78 |
dataset_size: 3013377174
|
79 |
---
|
80 |
|
81 |
+
# Russian StackOverflow
|
82 |
|
83 |
## Table of Contents
|
84 |
- [Table of Contents](#table-of-contents)
|
85 |
+
- [Description](#description)
|
86 |
+
- [Usage](#usage)
|
87 |
+
- [Data Instances](#data-instances)
|
|
|
|
|
88 |
- [Dataset Creation](#dataset-creation)
|
89 |
- [Curation Rationale](#curation-rationale)
|
90 |
- [Source Data](#source-data)
|
91 |
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
92 |
- [Licensing Information](#licensing-information)
|
93 |
|
94 |
+
## Description
|
95 |
|
96 |
+
**Summary:** Dataset of questions, answers, and comments from [ru.stackoverflow.com](https://ru.stackoverflow.com/).
|
97 |
|
98 |
**Script:** [create_stackoverflow.py](https://github.com/IlyaGusev/rulm/blob/hf/data_processing/create_stackoverflow.py)
|
99 |
|
100 |
**Point of Contact:** [Ilya Gusev](ilya.gusev@phystech.edu)
|
101 |
|
102 |
+
**Languages:** The dataset is in Russian with some programming code.
|
103 |
|
|
|
104 |
|
105 |
+
## Usage
|
106 |
|
107 |
```python
|
108 |
from datasets import load_dataset
|
109 |
dataset = load_dataset('IlyaGusev/ru_stackoverflow', split="train")
|
110 |
```
|
111 |
|
112 |
+
## Data Instances
|
|
|
|
|
113 |
For each instance, there is a string for the article, a string for the summary, and a string for the url. Additionally, a string for the title and a date are provided.
|
114 |
|
115 |
```
|