├── README.md ├── frames └── foo.txt ├── leaky_big_training.py ├── manne_gui.py ├── models ├── ae_noskip_chroma_sig_oo_trained_decoder.h5 ├── ae_noskip_chroma_sig_oo_trained_encoder.h5 ├── ae_skip_oo_trained_decoder.h5 ├── ae_skip_oo_trained_encoder.h5 └── foo.txt ├── requirements.txt ├── synth_manne_gui.py └── wav2frames.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/README.md -------------------------------------------------------------------------------- /frames/foo.txt: -------------------------------------------------------------------------------- 1 | helo 2 | -------------------------------------------------------------------------------- /leaky_big_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/leaky_big_training.py -------------------------------------------------------------------------------- /manne_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/manne_gui.py -------------------------------------------------------------------------------- /models/ae_noskip_chroma_sig_oo_trained_decoder.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/models/ae_noskip_chroma_sig_oo_trained_decoder.h5 -------------------------------------------------------------------------------- /models/ae_noskip_chroma_sig_oo_trained_encoder.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/models/ae_noskip_chroma_sig_oo_trained_encoder.h5 -------------------------------------------------------------------------------- /models/ae_skip_oo_trained_decoder.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/models/ae_skip_oo_trained_decoder.h5 -------------------------------------------------------------------------------- /models/ae_skip_oo_trained_encoder.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/models/ae_skip_oo_trained_encoder.h5 -------------------------------------------------------------------------------- /models/foo.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/requirements.txt -------------------------------------------------------------------------------- /synth_manne_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/synth_manne_gui.py -------------------------------------------------------------------------------- /wav2frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTColonel/manne/HEAD/wav2frames.py --------------------------------------------------------------------------------