├── .gitignore ├── LICENSE ├── Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 20-07-35.txt ├── Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 20-17-02.txt ├── Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 23-30-44.txt ├── README.md ├── data ├── NRC-emotion-lexicon-wordlevel-alphabetized-v0.92.txt ├── austen.csv ├── h.g.wells.csv └── rnn-austen-80-8000-2016-04-19-14-09-39.npz ├── evaluate.py ├── generate.py ├── rnn.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/LICENSE -------------------------------------------------------------------------------- /Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 20-07-35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 20-07-35.txt -------------------------------------------------------------------------------- /Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 20-17-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 20-17-02.txt -------------------------------------------------------------------------------- /Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 23-30-44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/Poems_of_anger_sadness_by_austen_ala_h.g.wells_2016-05-14 23-30-44.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/README.md -------------------------------------------------------------------------------- /data/NRC-emotion-lexicon-wordlevel-alphabetized-v0.92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/data/NRC-emotion-lexicon-wordlevel-alphabetized-v0.92.txt -------------------------------------------------------------------------------- /data/austen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/data/austen.csv -------------------------------------------------------------------------------- /data/h.g.wells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/data/h.g.wells.csv -------------------------------------------------------------------------------- /data/rnn-austen-80-8000-2016-04-19-14-09-39.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/data/rnn-austen-80-8000-2016-04-19-14-09-39.npz -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/evaluate.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/generate.py -------------------------------------------------------------------------------- /rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/rnn.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emdaniels/poetic-inner-join/HEAD/train.py --------------------------------------------------------------------------------