nevmenandr
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,101 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- ru
|
5 |
+
tags:
|
6 |
+
- natural-language-processing
|
7 |
+
- poetry-generation
|
8 |
+
- text-generation
|
9 |
+
- torch
|
10 |
+
- lstm
|
11 |
+
---
|
12 |
+
|
13 |
+
This model was trained using [Andrej Karpathy's code](https://github.com/karpathy/char-rnn) on texts of Russian songs. Models of this type well represent poetic style.
|
14 |
+
|
15 |
+
Model was trained with size 512 and 7 layers, dropout 0.5.
|
16 |
+
|
17 |
+
There are 2 checkpoints of this model presented in the repository. One after 35 epochs with loss 0.9145, the other after 49 epochs with loss 0.9113. These metrics are in the file name.
|
18 |
+
|
19 |
+
## Usage
|
20 |
+
|
21 |
+
The procedure for installing the required software is described [by Karpathy](https://github.com/karpathy/char-rnn), torch is required, the code is written in lua. Be careful, versions of libraries written many years ago are used!
|
22 |
+
|
23 |
+
```bash
|
24 |
+
th sample.lua lm_lstm_epoch50.00_1.1207.t7 -length 10000 -temperature 0.5 -primetext 'some text'
|
25 |
+
```
|
26 |
+
|
27 |
+
## Train data and goal
|
28 |
+
|
29 |
+
Train corpus provided by Artjoms Šela the athor of *[“Russian song” in literature of the 1800–1840s](https://scholar.google.com/citations?view_op=view_citation&hl=ru&user=4eYapmIAAAAJ&citation_for_view=4eYapmIAAAAJ:LkGwnXOMwfcC)* (2018). The corpus is close to the dataset published here: [Шеля, Артем, 2020, "Корпус «русской песни» 1800—1840-х гг."](https://dataverse.pushdom.ru/dataset.xhtml?persistentId=doi:10.31860/openlit-2019.11-C003), https://doi.org/10.31860/openlit-2019.11-C003, Репозиторий открытых данных по русской литературе и фольклору, V1, UNF:6:jhDsLpjMCNmSDeqoCckL9g== [fileUNF]
|
30 |
+
|
31 |
+
Samples generated by the model are used in *“Russian song” in literature of the 1800–1840s*, see p. 193
|
32 |
+
|
33 |
+
|
34 |
+
## What for?
|
35 |
+
|
36 |
+
In an era of winning Transformers, ancient RNN models seem archaic. But I see that they still work better than modern architectures with such important categories from the humanities point of view as individual style.
|
37 |
+
|
38 |
+
## Samples
|
39 |
+
|
40 |
+
### epoch 35, temperature 0.4
|
41 |
+
|
42 |
+
```
|
43 |
+
Не как не мог за поле,
|
44 |
+
Ветер был конца моя,
|
45 |
+
Под косящатом волной,
|
46 |
+
Нет на век подруженька!
|
47 |
+
Ах! как же в сердце не покой!
|
48 |
+
Что ж не забыл мне весной
|
49 |
+
Слезы льешь все не ведает,
|
50 |
+
И сердце приветная,
|
51 |
+
Не последний волны вострою,
|
52 |
+
Как по поле в своей забилися,
|
53 |
+
И слезами не веселилися.
|
54 |
+
```
|
55 |
+
|
56 |
+
### epoch 35, temperature 0.6
|
57 |
+
|
58 |
+
```
|
59 |
+
Как бы на кручине мой!
|
60 |
+
Собержитесь в москву на свете любить,
|
61 |
+
С красной сторону моей тоскою,
|
62 |
+
Осветил тебе любовь молодца,
|
63 |
+
Что забыл, как молодец,
|
64 |
+
В православный твой изведет.
|
65 |
+
Все полно, без ответ так скажите,
|
66 |
+
Положены меня,
|
67 |
+
Слезы молодая погода.
|
68 |
+
```
|
69 |
+
|
70 |
+
### epoch 49, temperature 0.5
|
71 |
+
|
72 |
+
```
|
73 |
+
Нет, как далеко мне,
|
74 |
+
Под кольцо легла,
|
75 |
+
Не веселишь мне милой,
|
76 |
+
Не пойдешь же ты
|
77 |
+
Без милой долго
|
78 |
+
Не полевает она
|
79 |
+
В лесочке в разлуке,
|
80 |
+
Не поет солнышко
|
81 |
+
Себя молодца,
|
82 |
+
Скажи красна девица,
|
83 |
+
Разлюбила мне
|
84 |
+
Скучно казатки
|
85 |
+
Подружки подобно,
|
86 |
+
Обольюсь в ту мою,
|
87 |
+
Как стало и в поле,
|
88 |
+
Как в поле сыпал,
|
89 |
+
Девка моя!
|
90 |
+
Ах! зачем ты нам тогда,
|
91 |
+
На чужих людей,
|
92 |
+
Как слезами
|
93 |
+
Сердце бедное
|
94 |
+
Не пристало тебя!
|
95 |
+
Не помнит на меня,
|
96 |
+
За тобой свой грозенький
|
97 |
+
Он в вечной веточке
|
98 |
+
С ним весной помираюсь,
|
99 |
+
Стало белого душе
|
100 |
+
Сердце больше да ворона.
|
101 |
+
```
|