Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 1.02 KB

README.md

File metadata and controls

24 lines (14 loc) · 1.02 KB

RNN Character level

char-rnn

Source

Model information

A recurrent neural network (RNN) outputs a prediction and a hidden state at each step of the computation. The hidden state captures historical information of a sequence (i.e. the neural network has memory) and the output is the final prediction of the model. We use this type of neural network to model sequences such as text or time series.

Training

cd text/char-rnn
julia --project char-rnn.jl

References