tkf / PyRNN

Recurrent Neural Networks by pure python

Clone this repository (size: 28.5 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/tkf/pyrnn/
commit 21: 22dc9583b75e
parent 20: d26eb5a02311
child 22: a905587e73be
add ElmanNetBernTanh. change old elman nets to ElmanNetGaussTanh, ElmanNetGaussSigmoid and ElmanNetDiriSoftmax. default
Takafumi Arakaki
2 months ago

 NB: This is not the latest revision. For the latest view, go to tip.

View at rev
PyRNN /
filename size last modified message
doc  
pyrnn  
toy  
.hgignore 40 B 4 months ago add doc (sphinx)
README.rst 694 B 4 months ago document link
setup.py 96 B 4 months ago wrote ElmanNet from scratch. learn_liss.py works fine.

README

How to install

Just do this (you may need root):

python setup.py install

If you want to install in ./home/ so you won't mess up your python system:

python setup.py install --home=home

Or you may want to install in specific directory if you are in cross platform environment (this is what I do):

python setup.py install --home=home/`uname -m`

After installation, you may add this in your .bashrc or other config files:

export PYTHONPATH=${PYTHONPATH}:/path/to/pyrnn/home/lib/python/

or:

export PYTHONPATH=${PYTHONPATH}:/path/to/pyrnn/home/`uname -m`/lib/python/

Document

Document is available here: http://www4.pf-x.net/~arataka/pyrnn/