├── README.md ├── model_stream.py ├── models ├── .DS_Store ├── sung_vocals.chkpnt ├── sung_vocals.json ├── sung_vocals.pth ├── vocals.chkpnt ├── vocals.json └── vocals.pth ├── requirements.txt ├── test_stream.py ├── unmix_stream.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/README.md -------------------------------------------------------------------------------- /model_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/model_stream.py -------------------------------------------------------------------------------- /models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/.DS_Store -------------------------------------------------------------------------------- /models/sung_vocals.chkpnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/sung_vocals.chkpnt -------------------------------------------------------------------------------- /models/sung_vocals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/sung_vocals.json -------------------------------------------------------------------------------- /models/sung_vocals.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/sung_vocals.pth -------------------------------------------------------------------------------- /models/vocals.chkpnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/vocals.chkpnt -------------------------------------------------------------------------------- /models/vocals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/vocals.json -------------------------------------------------------------------------------- /models/vocals.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/models/vocals.pth -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/test_stream.py -------------------------------------------------------------------------------- /unmix_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/unmix_stream.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommy-fox/streaming-source-separation/HEAD/utils.py --------------------------------------------------------------------------------