Actions

CHARNN text generator

From Algolit

Revision as of 13:42, 2 November 2017 by An (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Type: Algoliterary exploration
Dataset(s): Complete Works by Shakespeare & Jules Verne, Enron Email Archive
Technique: Torch, Cuda, Recurrent Neural Network, LSTM
Developed by: Justin Johnson (original version: Andrej Karpathy)

The CharRNN text generator produces text using the CharRNN model. This is a recurrent neural network that reads a text character per character. In the training phase the model analyzes which characters occur after each other and learns the chances of the next character based on the previous character it has seen. The model has a memory that varies in size. In the learning process it can forget certain information it has seen as the network is constructed using Long Short Term Memory modules.

One of the first things the model learns is that words are separated by spaces and sentences are separated by a period, a space, followed by an uppercase. Although it might seem the model has learned that a text is constructed using multiple words and sentences, it has actually learned that after a small amount of characters the chances are high a space will occur, and after more series of characters and spaces there will be a period, a space and an uppercase character.

The generator interface is trained on various data-sets and can be explored. The model is based on a script by Justin Johnson This script is an improved version of the original script by Andrej Karpathy