├── .gitignore ├── currennt ├── normal.cfg ├── normal.jsn ├── normal.log ├── normal.sh ├── uniform.cfg ├── uniform.jsn ├── uniform.log └── uniform.sh ├── data ├── train_1_speaker.nc └── val_1_speaker.nc ├── lasagne ├── experiment.log ├── experiment.py └── run.sh ├── parse_results.ipynb └── rnnlib ├── classification.config └── classification@2014.10.25-07.51.41.157093.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /currennt/normal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/normal.cfg -------------------------------------------------------------------------------- /currennt/normal.jsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/normal.jsn -------------------------------------------------------------------------------- /currennt/normal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/normal.log -------------------------------------------------------------------------------- /currennt/normal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/normal.sh -------------------------------------------------------------------------------- /currennt/uniform.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/uniform.cfg -------------------------------------------------------------------------------- /currennt/uniform.jsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/uniform.jsn -------------------------------------------------------------------------------- /currennt/uniform.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/uniform.log -------------------------------------------------------------------------------- /currennt/uniform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/currennt/uniform.sh -------------------------------------------------------------------------------- /data/train_1_speaker.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/data/train_1_speaker.nc -------------------------------------------------------------------------------- /data/val_1_speaker.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/data/val_1_speaker.nc -------------------------------------------------------------------------------- /lasagne/experiment.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/lasagne/experiment.log -------------------------------------------------------------------------------- /lasagne/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/lasagne/experiment.py -------------------------------------------------------------------------------- /lasagne/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/lasagne/run.sh -------------------------------------------------------------------------------- /parse_results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/parse_results.ipynb -------------------------------------------------------------------------------- /rnnlib/classification.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/rnnlib/classification.config -------------------------------------------------------------------------------- /rnnlib/classification@2014.10.25-07.51.41.157093.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craffel/lstm_benchmarks/HEAD/rnnlib/classification@2014.10.25-07.51.41.157093.log --------------------------------------------------------------------------------