├── .gitignore ├── README.md ├── latex ├── equations.aux ├── equations.log ├── equations.pdf └── equations.tex ├── net.py ├── previous ├── gradientchecker.py ├── gradientcheckingwithfunction.py ├── regurgitator.py └── simplemaximizer.py ├── rnnbohp.py ├── rnnbohp.pyc └── showcurves.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | *.pkl 3 | *.swp 4 | 2017* 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/README.md -------------------------------------------------------------------------------- /latex/equations.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /latex/equations.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/latex/equations.log -------------------------------------------------------------------------------- /latex/equations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/latex/equations.pdf -------------------------------------------------------------------------------- /latex/equations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/latex/equations.tex -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/net.py -------------------------------------------------------------------------------- /previous/gradientchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/previous/gradientchecker.py -------------------------------------------------------------------------------- /previous/gradientcheckingwithfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/previous/gradientcheckingwithfunction.py -------------------------------------------------------------------------------- /previous/regurgitator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/previous/regurgitator.py -------------------------------------------------------------------------------- /previous/simplemaximizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/previous/simplemaximizer.py -------------------------------------------------------------------------------- /rnnbohp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/rnnbohp.py -------------------------------------------------------------------------------- /rnnbohp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/rnnbohp.pyc -------------------------------------------------------------------------------- /showcurves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiconi/BOHP_RNN/HEAD/showcurves.py --------------------------------------------------------------------------------