KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
NSM
★ 27
Open GitHub ↗
Neural Stored-program Memory
Download README (.md)
Explore Similar Repositories
GDOCK-passwall
:
把GDOCK的源码进行了部分修改,添加了passwall,感谢https://github.com/ljk4160/GDOCK 和 https://github.com/coolsnowwolf/lede
react-code-diff-lite
:
基于react-hook的代码比对组件
godotia
:
A Defender-like game produced with Godot Engine.
wandering_inn
:
Download and convert The Wandering Inn to epub and mobi (kindle) format
lovue
:
Love vue 🔗 https://lovuey.github.io/lovue/
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
NSM
?
Download (.md)
# NSM source code for Neural Stored-program Memory arXiv version: https://arxiv.org/abs/1906.08862 ICLR version: https://openreview.net/forum?id=rkxxA24FDr code reference for NTM tasks: https://github.com/vlgiitr/ntm-pytorch code reference for babi: https://github.com/JoergFranke/ADNC # Single tasks run command examples for training long Copy ``` NTM baseline: python train_toys.py -task_json=./tasks/copy_long_ntm.json NUTM: python train_toys.py -task_json=./tasks/copy_long.json ``` for training Repeat Copy ``` NTM baseline: python train_toys.py -task_json=./tasks/repeatcopy_ntm.json NUTM: python train_toys.py -task_json=./tasks/repeatcopy.json ``` for testing long Copy ``` NTM baseline: python evaluate_toys.py -task_json=./tasks/copy_long_ntm.json NUTM: python evaluate_toys.py -task_json=./tasks/copy_long.json ``` # Sequencing tasks training ``` NTM baseline: python train_toys.py -task_json=./tasks/mix_cp_repeatcp_ntm.json -batch_size=16 NUTM: python train_toys.py -task_json=./tasks/mix_cp_repeatcp.json -batch_size=16 ``` # Babi task (branch babi) training ``` cd scripts python start_training.py ``` testing ``` python inference_babi_task.py ```