nevmenandr commited on
Commit
8d071c4
1 Parent(s): 9b6e20b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -3
README.md CHANGED
@@ -1,3 +1,57 @@
1
- ---
2
- license: cc0-1.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ language:
4
+ - de
5
+ tags:
6
+ - natural-language-processing
7
+ - poetry-generation
8
+ - torch
9
+ - lstm
10
+ ---
11
+
12
+ This generative text model was trained using [Andrej Karpathy's code](https://github.com/karpathy/char-rnn) on texts by the German-speaking poet Paul Celan. Models of this type well represent individual style.
13
+
14
+ Model was trained with size 512 and 3 layers, dropout 0.5.
15
+
16
+ ## Usage
17
+
18
+ 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!
19
+
20
+ ```bash
21
+ th sample.lua lm_lstm_epoch46.30_1.5115.t7
22
+ ```
23
+
24
+ ## Train data
25
+
26
+ Train data is non free due to copyright restrictions. The training corpus is collected from open sources on the internet.
27
+
28
+ ## What for?
29
+
30
+ 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.
31
+
32
+ ## Dataset
33
+
34
+ There is a [repository](https://github.com/nevmenandr/german-generated-poetic-texts) that publishes German poetic texts generated by RNN LSTM models (inclding this one) with different temperature.
35
+
36
+ ## Publication
37
+
38
+ There are some texts explaining the goal o these poetic experiments and their place in the history o human culture.
39
+
40
+ * "[Der digitale Superdichter](http://nevmenandr.net/personalia/holderlin.pdf). Vor 250 Jahren wurde Friedrich Hölderlin geboren. Heute kann Computertechnik neue Gedichte im Hölderlin-Sound generieren. Ein Werkstattbericht" *Die Literarische Welt*, 14 March 2020, p. 29.
41
+
42
+ * Orekhov, Boris, and Frank Fischer. "Neural reading: Insights from the analysis of poetry generated by artificial neural networks." *Orbis Litterarum* 75.5 (2020): 230-246. [DOI: 10.1111/oli.12274](https://onlinelibrary.wiley.com/doi/abs/10.1111/oli.12274)
43
+
44
+ ## BibTeX entry and citation info
45
+
46
+ ```
47
+ @article{orekhov2020neural,
48
+ title={Neural reading: Insights from the analysis of poetry generated by artificial neural networks},
49
+ author={Orekhov, Boris and Fischer, Frank},
50
+ journal={Orbis Litterarum},
51
+ volume={75},
52
+ number={5},
53
+ pages={230--246},
54
+ year={2020},
55
+ publisher={Wiley Online Library}
56
+ }
57
+ ```