README.md 629 Bytes
Newer Older
Quoc Le's avatar
Quoc Le committed
1
2
Implementation of the Neural Programmer model described in https://openreview.net/pdf?id=ry2YOrcge

Arvind Neekalantan's avatar
Arvind Neekalantan committed
3
Download and extract the data from https://www.dropbox.com/s/9tvtcv6lmy51zfw/data.zip?dl=0. Change the data_dir FLAG to the location of the data.
Quoc Le's avatar
Quoc Le committed
4

Arvind Neekalantan's avatar
Arvind Neekalantan committed
5
Training: python neural_programmer.py. The models are written to FLAGS.output_dir
Quoc Le's avatar
Quoc Le committed
6

Arvind Neekalantan's avatar
Arvind Neekalantan committed
7
Testing: python neural_programmer.py --evaluator_job=True. The models are loaded from FLAGS.output_dir. The evaluation is done on development data.
Quoc Le's avatar
Quoc Le committed
8

Arvind Neekalantan's avatar
Arvind Neekalantan committed
9
In case of errors because of encoding, add "# -*- coding: utf-8 -*-" as the first line in wiki_data.py
Arvind Neekalantan's avatar
Arvind Neekalantan committed
10

Quoc Le's avatar
Quoc Le committed
11
Maintained by Arvind Neelakantan (arvind2505)