Skip to content

Implementation of Recurrent Neural Network (RNN) from scratch

Notifications You must be signed in to change notification settings

sar-gupta/rnn-from-scratch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rnn-from-scratch

Implementation of Recurrent Neural Network (RNN) from scratch (char-rnn).

All the RNN code is in rnn.py.

test.py is used for defining an instance of the RNN and training it.

generate.py is for generating characters.

uwv.pkl contains weights for the trained model. If you run test.py, the model will load the weights from this file and continue training from there.