├── .gitignore ├── LICENSE ├── README.md ├── autoencoder-specgram.py ├── layers_custom.py ├── renneschiffchaff20130320bout1filt.wav ├── userconfig.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | pdf 2 | *.pyc 3 | *~ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/README.md -------------------------------------------------------------------------------- /autoencoder-specgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/autoencoder-specgram.py -------------------------------------------------------------------------------- /layers_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/layers_custom.py -------------------------------------------------------------------------------- /renneschiffchaff20130320bout1filt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/renneschiffchaff20130320bout1filt.wav -------------------------------------------------------------------------------- /userconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/userconfig.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstowell/autoencoder-specgram/HEAD/util.py --------------------------------------------------------------------------------