Recurrent Neural Networks using TensorFlow.
Project description
Recurrent Neural Networks using TensorFlow.
Installation
pip install rnn
It is recommended to use a virtual environment.
Getting Started
from rnn import LSTM
model = LSTM(units=128, projections=300)
outputs = model(inputs)
Sequence Generation
from rnn import Generator
sequence = Generator(model)
sample = sequence(seed, length)
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rnn-0.0.0.tar.gz
(2.5 kB
view hashes)