├── .gitignore ├── README.md ├── dataset.py ├── images └── soundstream.png ├── main.py └── net.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/nsynth** 2 | __pycache__ 3 | .ipynb_checkpoints -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbz/SoundStream/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbz/SoundStream/HEAD/dataset.py -------------------------------------------------------------------------------- /images/soundstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbz/SoundStream/HEAD/images/soundstream.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbz/SoundStream/HEAD/main.py -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbz/SoundStream/HEAD/net.py --------------------------------------------------------------------------------