Skip to content

Latest commit

 

History

History

char-rnn

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Character-Level RNN

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