snowkylin / ntm

TensorFlow implementation of Neural Turing Machines (NTM), with its application on one-shot learning (MANN)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Training the Model

mitarth opened this issue · comments

In copy task v2 the implementation of TensorFlow 2, where are you compiling, training, and saving the model. Could you please let me know that? After running task v2, how can I test the model?

For TensorFlow 2, the NTM/MANN model is implemented in ntm/ntm_cell_v2.py and ntm/mann_cell_v2.py. You can train the model by running copy_task_v2.py. Sorry that no saving/testing functionality is implemented in the v2 version. The v1 version provides full functionality which can be found in copy_task.py.