in progress
Tensorflow implementation of Google DeepMind's Teaching Machines to Read and Comprehend. This implementation contains:
First, you need to download DeepMind Q&A Dataset from here, save cnn.tgz
and dailymail.tgz
into the repo, and run:
$ ./unzip.sh cnn.tgz dailymail.tgz
Then run the pre-processing code with:
$ python data_utils.py data cnn
To train a model with cnn
dataset:
$ python main.py --dataset cnn
To test an existing model:
$ python main.py --dataset cnn --forward_only True
(in progress)
in progres, should be like:
Taehoon Kim / @carpedm20