Neural Language Modeling using tf.eager
Adapted from the official tutorial on using eager to build Language Model
A verbose and slow paced blog post is available on Medium
Clone the repo, create a new environment and install requirements.txt
git clone git@github.com:vineetm/tf-eager-nlm.git
cd tf-eager-nlm
conda create -n tfnlm python=3.6
source activate tfnlm
(tfnlm) pip install -r requirements.txt