├── LICENSE ├── README.md ├── Singularity ├── audio_examples └── Cristina Vane - So Easy │ ├── accompaniment_true.mp3 │ ├── mix.mp3 │ ├── mix.mp3_bass.wav │ ├── mix.mp3_drums.wav │ ├── mix.mp3_other.wav │ ├── mix.mp3_vocals.wav │ └── vocals_true.mp3 ├── checkpoints └── README.md ├── cog.yaml ├── cog_predict.py ├── data ├── __init__.py ├── dataset.py ├── musdb.py └── utils.py ├── hdf └── README.md ├── logs └── README.md ├── model ├── __init__.py ├── conv.py ├── crop.py ├── resample.py ├── utils.py └── waveunet.py ├── predict.py ├── requirements.txt ├── test.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /Singularity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/Singularity -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/accompaniment_true.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/accompaniment_true.mp3 -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/mix.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/mix.mp3 -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/mix.mp3_bass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/mix.mp3_bass.wav -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/mix.mp3_drums.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/mix.mp3_drums.wav -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/mix.mp3_other.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/mix.mp3_other.wav -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/mix.mp3_vocals.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/mix.mp3_vocals.wav -------------------------------------------------------------------------------- /audio_examples/Cristina Vane - So Easy/vocals_true.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/audio_examples/Cristina Vane - So Easy/vocals_true.mp3 -------------------------------------------------------------------------------- /checkpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/checkpoints/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/cog.yaml -------------------------------------------------------------------------------- /cog_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/cog_predict.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/data/dataset.py -------------------------------------------------------------------------------- /data/musdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/data/musdb.py -------------------------------------------------------------------------------- /data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/data/utils.py -------------------------------------------------------------------------------- /hdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/hdf/README.md -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/logs/README.md -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/model/conv.py -------------------------------------------------------------------------------- /model/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/model/crop.py -------------------------------------------------------------------------------- /model/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/model/resample.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/model/utils.py -------------------------------------------------------------------------------- /model/waveunet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/model/waveunet.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f90/Wave-U-Net-Pytorch/HEAD/utils.py --------------------------------------------------------------------------------