Neural Turing Machines-NTM系列(二)开发环境搭建
1.OpenSource
在NTM系列文章(一)中我们对NTM的原理做了简单介绍,接下来就来说说它的实现。目前网上能够找到各种版本的开源source:
1.基于Theano的python语言实现2:https://github.com/snipsco/ntm-lasagne
2.基于Theano的python语言实现1:https://github.com/shawntan/neural-turing-machines
3.基于Torch的实现:https://github.com/kaishengtai/torch-ntm
4.基于Tensor Flow的实现:https://github.com/carpedm20/NTM-tensorflow
5.基于C#的实现:https://github.com/JanTkacik/NTM
6.基于JS语言的实现:https://github.com/gcgibson/NTM
7.GO语言实现