forked from tensorflow/models
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d9a3ab
commit 863f6c0
Showing
1 changed file
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
Implementation of the Neural Programmer model described in https://openreview.net/pdf?id=ry2YOrcge | ||
# Neural Programmer | ||
|
||
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. | ||
Implementation of the Neural Programmer model described in [paper](https://openreview.net/pdf?id=ry2YOrcge) | ||
|
||
Training: python neural_programmer.py. The models are written to FLAGS.output_dir | ||
Download and extract the data from [dropbox](https://www.dropbox.com/s/9tvtcv6lmy51zfw/data.zip?dl=0). Change the ``data_dir FLAG`` to the location of the data. | ||
|
||
Testing: python neural_programmer.py --evaluator_job=True. The models are loaded from FLAGS.output_dir. The evaluation is done on development data. | ||
### Training | ||
``python neural_programmer.py`` | ||
|
||
In case of errors because of encoding, add "# -*- coding: utf-8 -*-" as the first line in wiki_data.py | ||
The models are written to FLAGS.output_dir | ||
|
||
### Testing | ||
``python neural_programmer.py --evaluator_job=True`` | ||
|
||
The models are loaded from ``FLAGS.output_dir``. The evaluation is done on development data. | ||
|
||
In case of errors because of encoding, add ``"# -*- coding: utf-8 -*-"`` as the first line in ``wiki_data.py`` | ||
|
||
Maintained by Arvind Neelakantan (arvind2505) |