├── .gitignore ├── README.md ├── config.yaml ├── core.py ├── dataloader.py ├── img ├── flute_diagram.png ├── trumpet_diagram.png └── wavetables.png ├── model.py ├── nsynth_subset.py ├── nsynth_subset ├── keys_test.txt ├── keys_train.txt └── keys_valid.txt ├── preprocess.py ├── test.py ├── test_audio ├── gt_2.wav ├── gt_2_output.wav ├── test_trumpet.wav └── test_trumpet_output.wav ├── train.py ├── train_local.py ├── utils.py └── wavetable_synth.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/config.yaml -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/core.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/dataloader.py -------------------------------------------------------------------------------- /img/flute_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/img/flute_diagram.png -------------------------------------------------------------------------------- /img/trumpet_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/img/trumpet_diagram.png -------------------------------------------------------------------------------- /img/wavetables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/img/wavetables.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/model.py -------------------------------------------------------------------------------- /nsynth_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/nsynth_subset.py -------------------------------------------------------------------------------- /nsynth_subset/keys_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/nsynth_subset/keys_test.txt -------------------------------------------------------------------------------- /nsynth_subset/keys_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/nsynth_subset/keys_train.txt -------------------------------------------------------------------------------- /nsynth_subset/keys_valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/nsynth_subset/keys_valid.txt -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/preprocess.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/test.py -------------------------------------------------------------------------------- /test_audio/gt_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/test_audio/gt_2.wav -------------------------------------------------------------------------------- /test_audio/gt_2_output.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/test_audio/gt_2_output.wav -------------------------------------------------------------------------------- /test_audio/test_trumpet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/test_audio/test_trumpet.wav -------------------------------------------------------------------------------- /test_audio/test_trumpet_output.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/test_audio/test_trumpet_output.wav -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/train.py -------------------------------------------------------------------------------- /train_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/train_local.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/utils.py -------------------------------------------------------------------------------- /wavetable_synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudgud96/diff-wave-synth/HEAD/wavetable_synth.py --------------------------------------------------------------------------------