├── .gitignore ├── LICENSE ├── README.md ├── configs ├── eval_probes.sh ├── eval_style.sh ├── train_all_jamendo_style.sh ├── train_all_libritts_style.sh ├── train_all_probes.sh └── train_all_proxies.sh ├── deepafx_st ├── __init__.py ├── callbacks │ ├── audio.py │ ├── ckpt.py │ ├── params.py │ └── plotting.py ├── data │ ├── audio.py │ ├── augmentations.py │ ├── dataset.py │ ├── proxy.py │ └── style.py ├── metrics.py ├── models │ ├── baselines.py │ ├── controller.py │ ├── efficient_net │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── model.py │ │ └── utils.py │ ├── encoder.py │ └── mobilenetv2.py ├── probes │ ├── cdpam_encoder.py │ ├── probe_system.py │ └── random_mel.py ├── processors │ ├── autodiff │ │ ├── __init__.py │ │ ├── channel.py │ │ ├── compressor.py │ │ ├── fir.py │ │ ├── peq.py │ │ └── signal.py │ ├── dsp │ │ ├── compressor.py │ │ └── peq.py │ ├── processor.py │ ├── proxy │ │ ├── channel.py │ │ ├── proxy_system.py │ │ └── tcn.py │ └── spsa │ │ ├── channel.py │ │ ├── eps_scheduler.py │ │ └── spsa_func.py ├── system.py ├── utils.py └── version.py ├── docs ├── color-generic-style-transfer-headline.svg ├── deepafx-st-headline.png ├── generic-style-transfer-headline.svg ├── new-generic-style-transfer-headline.svg └── training.svg ├── results ├── eval.md ├── eval_probes.md └── eval_time.md ├── scripts ├── download.py ├── effect_plotting.py ├── eval_probes.py ├── eval_style.py ├── export_ckpt.py ├── generate_styles.py ├── print_results.py ├── process.py ├── run_generate_styles.sh ├── run_style_case_study.sh ├── run_style_interpolation.sh ├── run_style_transfer.sh ├── run_style_transfer_bulk.sh ├── style_case_study.py ├── style_interpolation.py ├── style_transfer.py ├── style_transfer_bulk.py ├── test_ckpt.py ├── timing.py ├── train_probe.py ├── train_proxy.py └── train_style.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/README.md -------------------------------------------------------------------------------- /configs/eval_probes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/configs/eval_probes.sh -------------------------------------------------------------------------------- /configs/eval_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/configs/eval_style.sh -------------------------------------------------------------------------------- /configs/train_all_jamendo_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/configs/train_all_jamendo_style.sh -------------------------------------------------------------------------------- /configs/train_all_libritts_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/configs/train_all_libritts_style.sh -------------------------------------------------------------------------------- /configs/train_all_probes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/configs/train_all_probes.sh -------------------------------------------------------------------------------- /configs/train_all_proxies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/configs/train_all_proxies.sh -------------------------------------------------------------------------------- /deepafx_st/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/__init__.py -------------------------------------------------------------------------------- /deepafx_st/callbacks/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/callbacks/audio.py -------------------------------------------------------------------------------- /deepafx_st/callbacks/ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/callbacks/ckpt.py -------------------------------------------------------------------------------- /deepafx_st/callbacks/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/callbacks/params.py -------------------------------------------------------------------------------- /deepafx_st/callbacks/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/callbacks/plotting.py -------------------------------------------------------------------------------- /deepafx_st/data/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/data/audio.py -------------------------------------------------------------------------------- /deepafx_st/data/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/data/augmentations.py -------------------------------------------------------------------------------- /deepafx_st/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/data/dataset.py -------------------------------------------------------------------------------- /deepafx_st/data/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/data/proxy.py -------------------------------------------------------------------------------- /deepafx_st/data/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/data/style.py -------------------------------------------------------------------------------- /deepafx_st/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/metrics.py -------------------------------------------------------------------------------- /deepafx_st/models/baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/baselines.py -------------------------------------------------------------------------------- /deepafx_st/models/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/controller.py -------------------------------------------------------------------------------- /deepafx_st/models/efficient_net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/efficient_net/LICENSE -------------------------------------------------------------------------------- /deepafx_st/models/efficient_net/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/efficient_net/__init__.py -------------------------------------------------------------------------------- /deepafx_st/models/efficient_net/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/efficient_net/model.py -------------------------------------------------------------------------------- /deepafx_st/models/efficient_net/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/efficient_net/utils.py -------------------------------------------------------------------------------- /deepafx_st/models/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/encoder.py -------------------------------------------------------------------------------- /deepafx_st/models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/models/mobilenetv2.py -------------------------------------------------------------------------------- /deepafx_st/probes/cdpam_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/probes/cdpam_encoder.py -------------------------------------------------------------------------------- /deepafx_st/probes/probe_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/probes/probe_system.py -------------------------------------------------------------------------------- /deepafx_st/probes/random_mel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/probes/random_mel.py -------------------------------------------------------------------------------- /deepafx_st/processors/autodiff/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepafx_st/processors/autodiff/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/autodiff/channel.py -------------------------------------------------------------------------------- /deepafx_st/processors/autodiff/compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/autodiff/compressor.py -------------------------------------------------------------------------------- /deepafx_st/processors/autodiff/fir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/autodiff/fir.py -------------------------------------------------------------------------------- /deepafx_st/processors/autodiff/peq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/autodiff/peq.py -------------------------------------------------------------------------------- /deepafx_st/processors/autodiff/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/autodiff/signal.py -------------------------------------------------------------------------------- /deepafx_st/processors/dsp/compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/dsp/compressor.py -------------------------------------------------------------------------------- /deepafx_st/processors/dsp/peq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/dsp/peq.py -------------------------------------------------------------------------------- /deepafx_st/processors/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/processor.py -------------------------------------------------------------------------------- /deepafx_st/processors/proxy/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/proxy/channel.py -------------------------------------------------------------------------------- /deepafx_st/processors/proxy/proxy_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/proxy/proxy_system.py -------------------------------------------------------------------------------- /deepafx_st/processors/proxy/tcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/proxy/tcn.py -------------------------------------------------------------------------------- /deepafx_st/processors/spsa/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/spsa/channel.py -------------------------------------------------------------------------------- /deepafx_st/processors/spsa/eps_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/spsa/eps_scheduler.py -------------------------------------------------------------------------------- /deepafx_st/processors/spsa/spsa_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/processors/spsa/spsa_func.py -------------------------------------------------------------------------------- /deepafx_st/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/system.py -------------------------------------------------------------------------------- /deepafx_st/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/utils.py -------------------------------------------------------------------------------- /deepafx_st/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/deepafx_st/version.py -------------------------------------------------------------------------------- /docs/color-generic-style-transfer-headline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/docs/color-generic-style-transfer-headline.svg -------------------------------------------------------------------------------- /docs/deepafx-st-headline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/docs/deepafx-st-headline.png -------------------------------------------------------------------------------- /docs/generic-style-transfer-headline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/docs/generic-style-transfer-headline.svg -------------------------------------------------------------------------------- /docs/new-generic-style-transfer-headline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/docs/new-generic-style-transfer-headline.svg -------------------------------------------------------------------------------- /docs/training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/docs/training.svg -------------------------------------------------------------------------------- /results/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/results/eval.md -------------------------------------------------------------------------------- /results/eval_probes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/results/eval_probes.md -------------------------------------------------------------------------------- /results/eval_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/results/eval_time.md -------------------------------------------------------------------------------- /scripts/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/download.py -------------------------------------------------------------------------------- /scripts/effect_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/effect_plotting.py -------------------------------------------------------------------------------- /scripts/eval_probes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/eval_probes.py -------------------------------------------------------------------------------- /scripts/eval_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/eval_style.py -------------------------------------------------------------------------------- /scripts/export_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/export_ckpt.py -------------------------------------------------------------------------------- /scripts/generate_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/generate_styles.py -------------------------------------------------------------------------------- /scripts/print_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/print_results.py -------------------------------------------------------------------------------- /scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/process.py -------------------------------------------------------------------------------- /scripts/run_generate_styles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/run_generate_styles.sh -------------------------------------------------------------------------------- /scripts/run_style_case_study.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/run_style_case_study.sh -------------------------------------------------------------------------------- /scripts/run_style_interpolation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/run_style_interpolation.sh -------------------------------------------------------------------------------- /scripts/run_style_transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/run_style_transfer.sh -------------------------------------------------------------------------------- /scripts/run_style_transfer_bulk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/run_style_transfer_bulk.sh -------------------------------------------------------------------------------- /scripts/style_case_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/style_case_study.py -------------------------------------------------------------------------------- /scripts/style_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/style_interpolation.py -------------------------------------------------------------------------------- /scripts/style_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/style_transfer.py -------------------------------------------------------------------------------- /scripts/style_transfer_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/style_transfer_bulk.py -------------------------------------------------------------------------------- /scripts/test_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/test_ckpt.py -------------------------------------------------------------------------------- /scripts/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/timing.py -------------------------------------------------------------------------------- /scripts/train_probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/train_probe.py -------------------------------------------------------------------------------- /scripts/train_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/train_proxy.py -------------------------------------------------------------------------------- /scripts/train_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/scripts/train_style.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-research/DeepAFx-ST/HEAD/setup.py --------------------------------------------------------------------------------