Update README.md
Browse files
README.md
CHANGED
@@ -1,31 +1,66 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
configs:
|
4 |
-
- config_name: default
|
5 |
-
data_files:
|
6 |
-
- split: train
|
7 |
-
path: data/train-*
|
8 |
-
- split: test
|
9 |
-
path: data/test-*
|
10 |
-
dataset_info:
|
11 |
-
features:
|
12 |
-
- name: ID
|
13 |
-
dtype: int64
|
14 |
-
- name: Title
|
15 |
-
dtype: string
|
16 |
-
- name: Author
|
17 |
-
dtype: string
|
18 |
-
- name: Summary
|
19 |
-
dtype: string
|
20 |
-
- name: Full Text
|
21 |
-
dtype: string
|
22 |
-
splits:
|
23 |
-
- name: train
|
24 |
-
num_bytes: 722579662
|
25 |
-
num_examples: 1271
|
26 |
-
- name: test
|
27 |
-
num_bytes: 97561270
|
28 |
-
num_examples: 142
|
29 |
-
download_size: 284047544
|
30 |
-
dataset_size: 820140932
|
31 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
configs:
|
4 |
+
- config_name: default
|
5 |
+
data_files:
|
6 |
+
- split: train
|
7 |
+
path: data/train-*
|
8 |
+
- split: test
|
9 |
+
path: data/test-*
|
10 |
+
dataset_info:
|
11 |
+
features:
|
12 |
+
- name: ID
|
13 |
+
dtype: int64
|
14 |
+
- name: Title
|
15 |
+
dtype: string
|
16 |
+
- name: Author
|
17 |
+
dtype: string
|
18 |
+
- name: Summary
|
19 |
+
dtype: string
|
20 |
+
- name: Full Text
|
21 |
+
dtype: string
|
22 |
+
splits:
|
23 |
+
- name: train
|
24 |
+
num_bytes: 722579662
|
25 |
+
num_examples: 1271
|
26 |
+
- name: test
|
27 |
+
num_bytes: 97561270
|
28 |
+
num_examples: 142
|
29 |
+
download_size: 284047544
|
30 |
+
dataset_size: 820140932
|
31 |
+
---
|
32 |
+
# Books Summarization RU Dataset
|
33 |
+
|
34 |
+
## Описание на русском
|
35 |
+
|
36 |
+
Этот датасет представляет собой коллекцию из более чем 1400 книг различных жанров и тем, включая полные тексты и составленные вручную краткие содержания. Датасет охватывает широкий спектр литературы по размеру и тематике, предоставляя ценную информацию и материалы для анализа. Планируется дополнить датасет научными и медицинскими статьями для еще большей полноты и разнообразия.
|
37 |
+
|
38 |
+
- **Источник краткого содержания**: [briefly.ru](https://briefly.ru)
|
39 |
+
- **Источник полного текста**: [royallib.com](https://royallib.com)
|
40 |
+
- **Лицензия**: MIT
|
41 |
+
- **GITHUB**: [https://github.com/slon-hk](https://github.com/slon-hk)
|
42 |
+
|
43 |
+
### Структура данных
|
44 |
+
|
45 |
+
- `ID`: Идентификатор книги (int64)
|
46 |
+
- `Title`: Название книги (string)
|
47 |
+
- `Author`: Автор книги (string)
|
48 |
+
- `Summary`: Краткое содержание (string)
|
49 |
+
- `Full Text`: Полный текст (string)
|
50 |
+
|
51 |
+
## Description in English
|
52 |
+
|
53 |
+
This dataset is a collection of over 1400 books of various genres and topics, including full texts and human-compiled summaries. The dataset covers a wide range of literature in terms of size and theme, providing valuable information and materials for analysis. There are plans to include scientific and medical articles to further enhance the dataset's comprehensiveness and diversity.
|
54 |
+
|
55 |
+
- **Summary Source**: [briefly.ru](https://briefly.ru)
|
56 |
+
- **Full Text Source**: [royallib.com](https://royallib.com)
|
57 |
+
- **License**: MIT
|
58 |
+
- **GITHUB**: [https://github.com/slon-hk](https://github.com/slon-hk)
|
59 |
+
|
60 |
+
### Data Structure
|
61 |
+
|
62 |
+
- `ID`: Book identifier (int64)
|
63 |
+
- `Title`: Book title (string)
|
64 |
+
- `Author`: Book author (string)
|
65 |
+
- `Summary`: Book summary (string)
|
66 |
+
- `Full Text`: Full text (string)
|