├── LICENSE ├── README.md ├── audio └── Al James - Schoolboy Facination.wav ├── config.md ├── config_multi_instrument.json ├── config_singing_voice.json ├── datasets.py ├── environment.yml ├── img ├── wavenet_diagram.jpg └── wavenet_target_field.jpg ├── layers.py ├── main.py ├── models.py ├── separate.py ├── sessions ├── multi-instrument │ ├── checkpoints │ │ └── checkpoint.00045-0.hdf5 │ └── config.json └── singing-voice │ ├── checkpoints │ └── checkpoint.00058-0.hdf5 │ └── config.json └── util.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/README.md -------------------------------------------------------------------------------- /audio/Al James - Schoolboy Facination.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/audio/Al James - Schoolboy Facination.wav -------------------------------------------------------------------------------- /config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/config.md -------------------------------------------------------------------------------- /config_multi_instrument.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/config_multi_instrument.json -------------------------------------------------------------------------------- /config_singing_voice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/config_singing_voice.json -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/datasets.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/environment.yml -------------------------------------------------------------------------------- /img/wavenet_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/img/wavenet_diagram.jpg -------------------------------------------------------------------------------- /img/wavenet_target_field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/img/wavenet_target_field.jpg -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/layers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/models.py -------------------------------------------------------------------------------- /separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/separate.py -------------------------------------------------------------------------------- /sessions/multi-instrument/checkpoints/checkpoint.00045-0.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/sessions/multi-instrument/checkpoints/checkpoint.00045-0.hdf5 -------------------------------------------------------------------------------- /sessions/multi-instrument/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/sessions/multi-instrument/config.json -------------------------------------------------------------------------------- /sessions/singing-voice/checkpoints/checkpoint.00058-0.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/sessions/singing-voice/checkpoints/checkpoint.00058-0.hdf5 -------------------------------------------------------------------------------- /sessions/singing-voice/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/sessions/singing-voice/config.json -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francesclluis/source-separation-wavenet/HEAD/util.py --------------------------------------------------------------------------------