├── .gitignore ├── LICENSE ├── README.md ├── amc_dl ├── __init__.py ├── demo_maker.py └── torch_plus │ ├── __init__.py │ ├── example.py │ ├── manager.py │ ├── module.py │ ├── scheduler.py │ └── train_utils.py ├── collect_song.py ├── converter.py ├── dataset.py ├── dataset_loaders.py ├── demo ├── 1_compositional_style_transfer │ ├── 16bar_style_transfer │ │ ├── all.mid │ │ ├── fig(a)_original.mid │ │ ├── fig(b)_original.mid │ │ ├── fig(c)_a-txt_b-chd.mid │ │ ├── fig(d)_a-chd_b-txt.mid │ │ └── more_examples │ │ │ ├── sample1 │ │ │ ├── all.mid │ │ │ ├── fig(a)_original.mid │ │ │ ├── fig(b)_original.mid │ │ │ ├── fig(c)_a-txt_b-chd.mid │ │ │ └── fig(d)_a-chd_b-txt.mid │ │ │ ├── sample2 │ │ │ ├── all.mid │ │ │ ├── fig(a)_original.mid │ │ │ ├── fig(b)_original.mid │ │ │ ├── fig(c)_a-txt_b-chd.mid │ │ │ └── fig(d)_a-chd_b-txt.mid │ │ │ └── sample3 │ │ │ ├── all.mid │ │ │ ├── fig(a).mid │ │ │ ├── fig(b).mid │ │ │ ├── fig(c)_a-txt_b-chd.mid │ │ │ └── fig(d)_a-chd_b-txt.mid │ └── 2bar-style-transfer │ │ ├── explain_swap.png │ │ ├── more_examples │ │ └── swap_31by31.mid │ │ ├── swap_1_1.mid │ │ ├── swap_1_2.mid │ │ ├── swap_1_3.mid │ │ ├── swap_1_4.mid │ │ ├── swap_2_1.mid │ │ ├── swap_2_2.mid │ │ ├── swap_2_3.mid │ │ ├── swap_2_4.mid │ │ ├── swap_3_1.mid │ │ ├── swap_3_2.mid │ │ ├── swap_3_3.mid │ │ ├── swap_3_4.mid │ │ ├── swap_4_1.mid │ │ ├── swap_4_2.mid │ │ ├── swap_4_3.mid │ │ ├── swap_4_4.mid │ │ └── swap_all.mid ├── 2_texture_variation │ ├── posterior_sampling │ │ ├── more_examples │ │ │ ├── sample1 │ │ │ │ ├── original.mid │ │ │ │ ├── post_sample_1.mid │ │ │ │ ├── post_sample_2.mid │ │ │ │ └── post_sample_3.mid │ │ │ ├── sample2 │ │ │ │ ├── original.mid │ │ │ │ ├── post_sample_1.mid │ │ │ │ ├── post_sample_2.mid │ │ │ │ └── post_sample_3.mid │ │ │ └── sample3 │ │ │ │ ├── original.mid │ │ │ │ ├── post_sample_1.mid │ │ │ │ ├── post_sample_2.mid │ │ │ │ └── post_sample_3.mid │ │ ├── original.mid │ │ ├── post_sample_2.mid │ │ ├── post_sample_3.mid │ │ └── post_sample_on_fig.mid │ └── prior_sampling │ │ ├── C-Am-F-G.mid │ │ └── more_examples │ │ ├── Am-D7-G.mid │ │ ├── F-Bb-F.mid │ │ └── G-F-Eb.mid ├── 3_acc_arrangement │ ├── fig_generation_given2bar.mid │ ├── more_examples │ │ ├── long_generation │ │ │ ├── sample2_given4bar.mid │ │ │ ├── sample3_given4bar.mid │ │ │ └── sample_given4bar.mid │ │ ├── sample1_given2bar.mid │ │ ├── sample1_given4bar.mid │ │ ├── sample2_given2bar.mid │ │ ├── sample2_given4bar.mid │ │ ├── sample3_given2bar.mid │ │ └── sample3_given4bar.mid │ └── same_generation_given4bar.mid ├── chord_prog_interpolation │ ├── Am-Dm-G-C_to_C-F-G-C.mid │ ├── C-Am-F-G_to_Eb-Cm-Ab-Bb.mid │ ├── Db-G-Cm_to_C-D-G.mid │ └── G-C-G_to_G#_C#_G#.mid └── readme.txt ├── model.py ├── ptvae.py ├── score.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/README.md -------------------------------------------------------------------------------- /amc_dl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amc_dl/demo_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/demo_maker.py -------------------------------------------------------------------------------- /amc_dl/torch_plus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/torch_plus/__init__.py -------------------------------------------------------------------------------- /amc_dl/torch_plus/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/torch_plus/example.py -------------------------------------------------------------------------------- /amc_dl/torch_plus/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/torch_plus/manager.py -------------------------------------------------------------------------------- /amc_dl/torch_plus/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/torch_plus/module.py -------------------------------------------------------------------------------- /amc_dl/torch_plus/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/torch_plus/scheduler.py -------------------------------------------------------------------------------- /amc_dl/torch_plus/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/amc_dl/torch_plus/train_utils.py -------------------------------------------------------------------------------- /collect_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/collect_song.py -------------------------------------------------------------------------------- /converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/converter.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/dataset.py -------------------------------------------------------------------------------- /dataset_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/dataset_loaders.py -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/all.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/all.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/fig(a)_original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/fig(a)_original.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/fig(b)_original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/fig(b)_original.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/fig(c)_a-txt_b-chd.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/fig(c)_a-txt_b-chd.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/fig(d)_a-chd_b-txt.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/fig(d)_a-chd_b-txt.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/all.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/all.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(a)_original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(a)_original.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(b)_original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(b)_original.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(c)_a-txt_b-chd.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(c)_a-txt_b-chd.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(d)_a-chd_b-txt.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample1/fig(d)_a-chd_b-txt.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/all.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/all.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(a)_original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(a)_original.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(b)_original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(b)_original.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(c)_a-txt_b-chd.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(c)_a-txt_b-chd.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(d)_a-chd_b-txt.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample2/fig(d)_a-chd_b-txt.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/all.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/all.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(a).mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(a).mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(b).mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(b).mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(c)_a-txt_b-chd.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(c)_a-txt_b-chd.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(d)_a-chd_b-txt.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/16bar_style_transfer/more_examples/sample3/fig(d)_a-chd_b-txt.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/explain_swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/explain_swap.png -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/more_examples/swap_31by31.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/more_examples/swap_31by31.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_1.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_2.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_3.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_4.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_1_4.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_1.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_2.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_3.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_4.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_2_4.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_1.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_2.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_3.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_4.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_3_4.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_1.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_2.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_3.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_4.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_4_4.mid -------------------------------------------------------------------------------- /demo/1_compositional_style_transfer/2bar-style-transfer/swap_all.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/1_compositional_style_transfer/2bar-style-transfer/swap_all.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample1/original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample1/original.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample1/post_sample_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample1/post_sample_1.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample1/post_sample_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample1/post_sample_2.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample1/post_sample_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample1/post_sample_3.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample2/original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample2/original.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample2/post_sample_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample2/post_sample_1.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample2/post_sample_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample2/post_sample_2.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample2/post_sample_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample2/post_sample_3.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample3/original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample3/original.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample3/post_sample_1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample3/post_sample_1.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample3/post_sample_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample3/post_sample_2.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/more_examples/sample3/post_sample_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/more_examples/sample3/post_sample_3.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/original.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/original.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/post_sample_2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/post_sample_2.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/post_sample_3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/post_sample_3.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/posterior_sampling/post_sample_on_fig.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/posterior_sampling/post_sample_on_fig.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/prior_sampling/C-Am-F-G.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/prior_sampling/C-Am-F-G.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/prior_sampling/more_examples/Am-D7-G.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/prior_sampling/more_examples/Am-D7-G.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/prior_sampling/more_examples/F-Bb-F.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/prior_sampling/more_examples/F-Bb-F.mid -------------------------------------------------------------------------------- /demo/2_texture_variation/prior_sampling/more_examples/G-F-Eb.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/2_texture_variation/prior_sampling/more_examples/G-F-Eb.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/fig_generation_given2bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/fig_generation_given2bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/long_generation/sample2_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/long_generation/sample2_given4bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/long_generation/sample3_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/long_generation/sample3_given4bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/long_generation/sample_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/long_generation/sample_given4bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/sample1_given2bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/sample1_given2bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/sample1_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/sample1_given4bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/sample2_given2bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/sample2_given2bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/sample2_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/sample2_given4bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/sample3_given2bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/sample3_given2bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/more_examples/sample3_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/more_examples/sample3_given4bar.mid -------------------------------------------------------------------------------- /demo/3_acc_arrangement/same_generation_given4bar.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/3_acc_arrangement/same_generation_given4bar.mid -------------------------------------------------------------------------------- /demo/chord_prog_interpolation/Am-Dm-G-C_to_C-F-G-C.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/chord_prog_interpolation/Am-Dm-G-C_to_C-F-G-C.mid -------------------------------------------------------------------------------- /demo/chord_prog_interpolation/C-Am-F-G_to_Eb-Cm-Ab-Bb.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/chord_prog_interpolation/C-Am-F-G_to_Eb-Cm-Ab-Bb.mid -------------------------------------------------------------------------------- /demo/chord_prog_interpolation/Db-G-Cm_to_C-D-G.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/chord_prog_interpolation/Db-G-Cm_to_C-D-G.mid -------------------------------------------------------------------------------- /demo/chord_prog_interpolation/G-C-G_to_G#_C#_G#.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/chord_prog_interpolation/G-C-G_to_G#_C#_G#.mid -------------------------------------------------------------------------------- /demo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/demo/readme.txt -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/model.py -------------------------------------------------------------------------------- /ptvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/ptvae.py -------------------------------------------------------------------------------- /score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/score.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZWaang/polyphonic-chord-texture-disentanglement/HEAD/train.py --------------------------------------------------------------------------------