Audyn 0.0.1.dev7__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {audyn-0.0.1.dev7 → audyn-0.0.3}/Audyn.egg-info/PKG-INFO +36 -3
- {audyn-0.0.1.dev7 → audyn-0.0.3}/Audyn.egg-info/SOURCES.txt +121 -43
- audyn-0.0.3/Audyn.egg-info/entry_points.txt +7 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/Audyn.egg-info/requires.txt +7 -1
- {audyn-0.0.1.dev7 → audyn-0.0.3}/PKG-INFO +36 -3
- audyn-0.0.3/README.md +95 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/__init__.py +1 -1
- audyn-0.0.3/audyn/bin/decode_musdb18.py +209 -0
- audyn-0.0.3/audyn/bin/download_mtat.py +127 -0
- audyn-0.0.3/audyn/bin/download_mtg_jamendo.py +136 -0
- audyn-0.0.3/audyn/bin/download_musdb18.py +124 -0
- audyn-0.0.3/audyn/bin/download_openmic2018.py +115 -0
- audyn-0.0.3/audyn/bin/parse_run_command.py +66 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/config.yaml +2 -0
- audyn-0.0.3/audyn/configs/decode-musdb18.yaml +11 -0
- audyn-0.0.3/audyn/configs/download-mtat.yaml +8 -0
- audyn-0.0.3/audyn/configs/download-mtg-jamendo.yaml +10 -0
- audyn-0.0.3/audyn/configs/download-musdb18.yaml +9 -0
- audyn-0.0.3/audyn/configs/download-openmic2018.yaml +8 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/system/cpu.yaml +7 -3
- audyn-0.0.3/audyn/configs/system/cuda.yaml +8 -0
- audyn-0.0.3/audyn/configs/system/cuda_amp.yaml +6 -0
- audyn-0.0.3/audyn/configs/system/cuda_ddp.yaml +16 -0
- audyn-0.0.3/audyn/configs/system/cuda_ddp_amp.yaml +6 -0
- audyn-0.0.3/audyn/configs/system/defaults.yaml +28 -0
- audyn-0.0.3/audyn/configs/system/mps.yaml +11 -0
- audyn-0.0.3/audyn/configs/train/dataset/random-stems-musdb18.yaml +26 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/lsgan.py +4 -0
- audyn-0.0.3/audyn/criterion/pit.py +114 -0
- audyn-0.0.3/audyn/criterion/sdr.py +153 -0
- audyn-0.0.3/audyn/functional/bitnet.py +168 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/__init__.py +20 -2
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/ast.py +19 -3
- audyn-0.0.3/audyn/models/conv_tasnet.py +191 -0
- audyn-0.0.3/audyn/models/dprnn_tasnet.py +192 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/encodec.py +4 -3
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/hifigan.py +19 -593
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/lextransformer.py +3 -3
- audyn-0.0.3/audyn/models/music_tagging_transformer.py +285 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/roformer.py +3 -22
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/ssast.py +3 -1
- audyn-0.0.3/audyn/models/tasnet.py +267 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/text_to_wave.py +1 -1
- audyn-0.0.3/audyn/models/wavenext.py +127 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/activation.py +295 -0
- audyn-0.0.3/audyn/modules/bitnet.py +912 -0
- audyn-0.0.3/audyn/modules/conv_tasnet.py +362 -0
- audyn-0.0.3/audyn/modules/convnext.py +205 -0
- audyn-0.0.3/audyn/modules/dprnn.py +300 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/encodec.py +6 -24
- audyn-0.0.3/audyn/modules/hifigan.py +611 -0
- audyn-0.0.3/audyn/modules/lora.py +437 -0
- audyn-0.0.3/audyn/modules/music_tagging_transformer.py +857 -0
- audyn-0.0.3/audyn/modules/normalization.py +190 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/passt.py +12 -3
- audyn-0.0.3/audyn/modules/tasnet.py +74 -0
- audyn-0.0.3/audyn/modules/transformer.py +25 -0
- audyn-0.0.3/audyn/modules/transforms.py +89 -0
- audyn-0.0.3/audyn/optim/__init__.py +35 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/optim/optimizer.py +1 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/__init__.py +7 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/hifigan.py +1 -1
- audyn-0.0.3/audyn/transforms/music_tagging_transformer.py +114 -0
- audyn-0.0.3/audyn/transforms/slicer.py +104 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/__init__.py +126 -6
- audyn-0.0.3/audyn/utils/_torch/compile.py +53 -0
- audyn-0.0.3/audyn/utils/_torchhub/__init__.py +18 -0
- audyn-0.0.3/audyn/utils/_torchhub/ast.py +43 -0
- audyn-0.0.3/audyn/utils/_torchhub/music_tagging_transformer.py +92 -0
- audyn-0.0.3/audyn/utils/_torchhub/passt.py +39 -0
- audyn-0.0.3/audyn/utils/_torchhub/ssast.py +77 -0
- audyn-0.0.3/audyn/utils/compile/__init__.py +16 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/__init__.py +20 -2
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/dataset.py +4 -4
- audyn-0.0.3/audyn/utils/data/birdclef/__init__.py +49 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/_common/__init__.py +69 -16
- audyn-0.0.1.dev7/audyn/utils/data/birdclef/birdclef2024/collator.py → audyn-0.0.3/audyn/utils/data/birdclef/_common/collater.py +7 -4
- audyn-0.0.3/audyn/utils/data/birdclef/_common/composer.py +160 -0
- audyn-0.0.3/audyn/utils/data/birdclef/_common/dataset.py +127 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2021/__init__.py +96 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2021/_download.py +36 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2021/collator.py +26 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2021/composer.py +73 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2021/dataset.py +28 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2022/__init__.py +32 -3
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2022/collator.py +26 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2022/composer.py +73 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2022/dataset.py +28 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2023/__init__.py +96 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2023/_download.py +36 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2023/collator.py +26 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2023/composer.py +73 -0
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2023/dataset.py +28 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2024/__init__.py +32 -3
- audyn-0.0.3/audyn/utils/data/birdclef/birdclef2024/collator.py +26 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2024/composer.py +15 -96
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2024/dataset.py +3 -95
- audyn-0.0.3/audyn/utils/data/composer.py +403 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/dataset.py +8 -1
- audyn-0.0.3/audyn/utils/data/download/__init__.py +66 -0
- audyn-0.0.3/audyn/utils/data/hifigan/__init__.py +3 -0
- audyn-0.0.3/audyn/utils/data/hifigan/composer.py +120 -0
- audyn-0.0.3/audyn/utils/data/libritts/__init__.py +9 -0
- audyn-0.0.3/audyn/utils/data/libritts/_download.py +46 -0
- audyn-0.0.3/audyn/utils/data/msd/__init__.py +9 -0
- audyn-0.0.3/audyn/utils/data/msd/_download.py +79 -0
- audyn-0.0.3/audyn/utils/data/mtat/__init__.py +9 -0
- audyn-0.0.3/audyn/utils/data/mtat/_download.py +74 -0
- audyn-0.0.3/audyn/utils/data/mtg_jamendo/__init__.py +39 -0
- audyn-0.0.3/audyn/utils/data/mtg_jamendo/_download.py +246 -0
- audyn-0.0.3/audyn/utils/data/musdb18/__init__.py +28 -0
- audyn-0.0.3/audyn/utils/data/musdb18/_download.py +78 -0
- audyn-0.0.3/audyn/utils/data/musdb18/dataset.py +791 -0
- audyn-0.0.3/audyn/utils/data/musdb18/sampler.py +118 -0
- audyn-0.0.3/audyn/utils/data/vctk/__init__.py +13 -0
- audyn-0.0.3/audyn/utils/data/vctk/_download.py +90 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/driver/__init__.py +2 -1
- audyn-0.0.3/audyn/utils/driver/_decorator.py +81 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/driver/base.py +531 -220
- audyn-0.0.3/audyn/utils/driver/gan.py +1201 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/driver/text_to_feat.py +225 -161
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/github/__init__.py +5 -18
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/hydra/__init__.py +1 -1
- audyn-0.0.3/audyn/utils/model/__init__.py +43 -0
- {audyn-0.0.1.dev7/audyn/utils/model → audyn-0.0.3/audyn/utils/modules}/__init__.py +10 -3
- audyn-0.0.3/audyn/utils/modules/bitnet.py +275 -0
- audyn-0.0.3/audyn/utils/modules/lora.py +107 -0
- audyn-0.0.3/audyn/utils/music/__init__.py +163 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/pyproject.toml +12 -1
- audyn-0.0.1.dev7/README.md +0 -64
- audyn-0.0.1.dev7/audyn/modules/normalization.py +0 -3
- audyn-0.0.1.dev7/audyn/utils/data/composer.py +0 -135
- audyn-0.0.1.dev7/audyn/utils/driver/_conf_template/system/cuda.yaml +0 -11
- audyn-0.0.1.dev7/audyn/utils/driver/_conf_template/system/cuda_amp.yaml +0 -11
- audyn-0.0.1.dev7/audyn/utils/driver/_conf_template/system/cuda_ddp.yaml +0 -11
- audyn-0.0.1.dev7/audyn/utils/driver/_conf_template/system/cuda_ddp_amp.yaml +0 -11
- audyn-0.0.1.dev7/audyn/utils/driver/_conf_template/system/defaults.yaml +0 -11
- audyn-0.0.1.dev7/audyn/utils/driver/_conf_template/system/mps.yaml +0 -11
- audyn-0.0.1.dev7/audyn/utils/driver/_decorator.py +0 -29
- audyn-0.0.1.dev7/audyn/utils/driver/gan.py +0 -1006
- audyn-0.0.1.dev7/audyn/utils/music/__init__.py +0 -66
- {audyn-0.0.1.dev7 → audyn-0.0.3}/Audyn.egg-info/dependency_links.txt +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/Audyn.egg-info/top_level.txt +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/LICENSE +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/MANIFEST.in +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/criterion/cross_entropy.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/criterion/vqvae.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/data/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/lr_scheduler/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/lr_scheduler/none.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/lr_scheduler/transformer.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/model/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/model/gan.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/optimizer/adam.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/optimizer/adam_ema.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/optimizer/adamw.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/optimizer/gan.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/preprocess/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/preprocess/ljspeech_text-to-feat.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/preprocess/text-to-feat.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/preprocess/text-to-wave.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/test/dataloader/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/test/dataset/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/test/dataset/torch.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/test/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/test/text_to_wave.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/clip_gradient/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/clip_gradient/gan.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/dataloader/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/dataloader/sequential-batch.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/dataset/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/dataset/sortable-torch.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/dataset/torch.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/dataset/webdataset.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/gan.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/record/defaults.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/record/template.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/template.yaml +0 -0
- {audyn-0.0.1.dev7/audyn/utils/driver/_conf_template → audyn-0.0.3/audyn/configs}/train/text-to-feat+pretrained_feat-to-wave.yaml +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/autoregressive.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/base.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/contrastive.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/distance.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/fastspeech.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/flow.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/gan.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/glowtts.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/hifigan.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/melspectrogram.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/rvqvae.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/ssast.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/criterion/vqvae.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/functional/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/functional/activation.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/functional/clustering.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/functional/vector_quantization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/metrics/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/metrics/base.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/metrics/crossmodal.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/metrics/retrieval.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/fastspeech.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/gan.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/glowtts.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/passt.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/pixelsnail.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/rvqvae.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/soundstream.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/vae.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/vqvae.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/waveglow.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/models/wavenet.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/duration_predictor.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/fastspeech.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/film.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/flow.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/glow.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/glowtts.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/pixelcnn.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/pixelsnail.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/positional_encoding.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/rvq.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/soundstream.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/vit.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/vq.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/vqvae.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/waveglow.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/modules/wavenet.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/optim/lr_scheduler.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/ast.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/birdclef.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/cqt.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/hubert.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/kaldi.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/transforms/librosa.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/alignment/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/alignment/monotonic_align.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/clip_grad.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/_download.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/ast.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/composer.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/distributed.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/audioset/sampler.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2022/_download.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2024/_download.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/birdclef/birdclef2024/models/baseline.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/clotho/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/clotho/text/indexing.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/clotho/text/normalization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/clotho/text/symbols.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/clotho/text/tokenization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/cmudict/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/cmudict/indexing.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/collator.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/dataloader.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/distributed.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/postprocess.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/sampler.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/tacotron/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/tacotron/text/indexing.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/tacotron/text/normalization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/tacotron/text/numbers.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/tacotron/text/symbols.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/tacotron/text/tokenization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/data/webdataset.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/distributed/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/driver/feat_to_wave.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/driver/text_to_wave.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/duration/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/hydra/utils.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/lab/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/logging/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/parallel/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/tensorboard/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/text/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/text/indexing.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/text/normalization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/text/pronunciation.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/text/tokenization.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/audyn/utils/textgrid/__init__.py +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/cpp_extensions/monotonic_align/monotonic_align.cpp +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/setup.cfg +0 -0
- {audyn-0.0.1.dev7 → audyn-0.0.3}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Audyn
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: A PyTorch toolkit for audio synthesis.
|
|
5
5
|
Author: Takuya Hasumi
|
|
6
6
|
License: Apache License
|
|
@@ -212,12 +212,14 @@ License-File: LICENSE
|
|
|
212
212
|
Requires-Dist: importlib_resources<6.2; python_version == "3.8"
|
|
213
213
|
Requires-Dist: omegaconf
|
|
214
214
|
Requires-Dist: hydra-core
|
|
215
|
-
Requires-Dist: matplotlib
|
|
215
|
+
Requires-Dist: matplotlib<3.9.1; sys_platform == "win32"
|
|
216
|
+
Requires-Dist: matplotlib; sys_platform != "win32"
|
|
216
217
|
Requires-Dist: torch
|
|
217
218
|
Requires-Dist: torchaudio
|
|
218
219
|
Requires-Dist: torchtext
|
|
219
220
|
Requires-Dist: torchvision
|
|
220
221
|
Requires-Dist: tensorboard
|
|
222
|
+
Requires-Dist: numpy<2.0
|
|
221
223
|
Requires-Dist: webdataset
|
|
222
224
|
Requires-Dist: inflect
|
|
223
225
|
Provides-Extra: recipes
|
|
@@ -241,6 +243,27 @@ Requires-Dist: pytest-cov; extra == "tests"
|
|
|
241
243
|
|
|
242
244
|
Audyn is PyTorch toolkit for audio synthesis.
|
|
243
245
|
|
|
246
|
+
## Build Status
|
|
247
|
+
|
|
248
|
+
| Python/PyTorch | Ubuntu | MacOS | Windows |
|
|
249
|
+
|:-:|:-:|:-:|:-:|
|
|
250
|
+
| 3.8/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.8_torch-2.0.yaml) |
|
|
251
|
+
| 3.8/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.8_torch-2.1.yaml) |
|
|
252
|
+
| 3.8/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.2.yaml) | |
|
|
253
|
+
| 3.8/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.3.yaml) | | |
|
|
254
|
+
| 3.9/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.9_torch-2.0.yaml) |
|
|
255
|
+
| 3.9/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.9_torch-2.1.yaml) |
|
|
256
|
+
| 3.9/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.2.yaml) | |
|
|
257
|
+
| 3.9/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.3.yaml) | | |
|
|
258
|
+
| 3.10/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.10_torch-2.0.yaml) |
|
|
259
|
+
| 3.10/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.10_torch-2.1.yaml) |
|
|
260
|
+
| 3.10/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.2.yaml) | |
|
|
261
|
+
| 3.10/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.3.yaml) | | |
|
|
262
|
+
| 3.11/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.11_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.11_torch-2.0.yaml) |
|
|
263
|
+
| 3.11/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.11_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.11_torch-2.1.yaml) |
|
|
264
|
+
| 3.11/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.2.yaml) | | |
|
|
265
|
+
| 3.11/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.3.yaml) | | |
|
|
266
|
+
|
|
244
267
|
## Installation
|
|
245
268
|
You can install by pip.
|
|
246
269
|
```shell
|
|
@@ -274,7 +297,8 @@ pip install -e "."
|
|
|
274
297
|
|
|
275
298
|
## Development
|
|
276
299
|
```shell
|
|
277
|
-
|
|
300
|
+
git clone https://github.com/tky823/Audyn.git
|
|
301
|
+
cd Audyn
|
|
278
302
|
pip install -e ".[recipes,dev,tests]"
|
|
279
303
|
```
|
|
280
304
|
|
|
@@ -300,3 +324,12 @@ sphinx-autobuild docs docs/_build/html
|
|
|
300
324
|
```shell
|
|
301
325
|
pytest tests/package
|
|
302
326
|
```
|
|
327
|
+
|
|
328
|
+
To include slow tests
|
|
329
|
+
```shell
|
|
330
|
+
pytest tests/package --runslow
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
## License
|
|
334
|
+
- Apache License, Version 2.0 **EXCEPT FOR WEIGHTS OF PRETRAINED MODELS**
|
|
335
|
+
- Weights for some of the pre-trained models are extracted from the official implementations. Their licenses follow the official implementations.
|
|
@@ -6,9 +6,65 @@ setup.py
|
|
|
6
6
|
Audyn.egg-info/PKG-INFO
|
|
7
7
|
Audyn.egg-info/SOURCES.txt
|
|
8
8
|
Audyn.egg-info/dependency_links.txt
|
|
9
|
+
Audyn.egg-info/entry_points.txt
|
|
9
10
|
Audyn.egg-info/requires.txt
|
|
10
11
|
Audyn.egg-info/top_level.txt
|
|
11
12
|
audyn/__init__.py
|
|
13
|
+
audyn/bin/decode_musdb18.py
|
|
14
|
+
audyn/bin/download_mtat.py
|
|
15
|
+
audyn/bin/download_mtg_jamendo.py
|
|
16
|
+
audyn/bin/download_musdb18.py
|
|
17
|
+
audyn/bin/download_openmic2018.py
|
|
18
|
+
audyn/bin/parse_run_command.py
|
|
19
|
+
audyn/configs/config.yaml
|
|
20
|
+
audyn/configs/decode-musdb18.yaml
|
|
21
|
+
audyn/configs/download-mtat.yaml
|
|
22
|
+
audyn/configs/download-mtg-jamendo.yaml
|
|
23
|
+
audyn/configs/download-musdb18.yaml
|
|
24
|
+
audyn/configs/download-openmic2018.yaml
|
|
25
|
+
audyn/configs/criterion/cross_entropy.yaml
|
|
26
|
+
audyn/configs/criterion/vqvae.yaml
|
|
27
|
+
audyn/configs/data/defaults.yaml
|
|
28
|
+
audyn/configs/lr_scheduler/defaults.yaml
|
|
29
|
+
audyn/configs/lr_scheduler/none.yaml
|
|
30
|
+
audyn/configs/lr_scheduler/transformer.yaml
|
|
31
|
+
audyn/configs/model/defaults.yaml
|
|
32
|
+
audyn/configs/model/gan.yaml
|
|
33
|
+
audyn/configs/optimizer/adam.yaml
|
|
34
|
+
audyn/configs/optimizer/adam_ema.yaml
|
|
35
|
+
audyn/configs/optimizer/adamw.yaml
|
|
36
|
+
audyn/configs/optimizer/gan.yaml
|
|
37
|
+
audyn/configs/preprocess/defaults.yaml
|
|
38
|
+
audyn/configs/preprocess/ljspeech_text-to-feat.yaml
|
|
39
|
+
audyn/configs/preprocess/text-to-feat.yaml
|
|
40
|
+
audyn/configs/preprocess/text-to-wave.yaml
|
|
41
|
+
audyn/configs/system/cpu.yaml
|
|
42
|
+
audyn/configs/system/cuda.yaml
|
|
43
|
+
audyn/configs/system/cuda_amp.yaml
|
|
44
|
+
audyn/configs/system/cuda_ddp.yaml
|
|
45
|
+
audyn/configs/system/cuda_ddp_amp.yaml
|
|
46
|
+
audyn/configs/system/defaults.yaml
|
|
47
|
+
audyn/configs/system/mps.yaml
|
|
48
|
+
audyn/configs/test/defaults.yaml
|
|
49
|
+
audyn/configs/test/text_to_wave.yaml
|
|
50
|
+
audyn/configs/test/dataloader/defaults.yaml
|
|
51
|
+
audyn/configs/test/dataset/defaults.yaml
|
|
52
|
+
audyn/configs/test/dataset/torch.yaml
|
|
53
|
+
audyn/configs/train/defaults.yaml
|
|
54
|
+
audyn/configs/train/gan.yaml
|
|
55
|
+
audyn/configs/train/template.yaml
|
|
56
|
+
audyn/configs/train/text-to-feat+pretrained_feat-to-wave.yaml
|
|
57
|
+
audyn/configs/train/clip_gradient/defaults.yaml
|
|
58
|
+
audyn/configs/train/clip_gradient/gan.yaml
|
|
59
|
+
audyn/configs/train/dataloader/defaults.yaml
|
|
60
|
+
audyn/configs/train/dataloader/sequential-batch.yaml
|
|
61
|
+
audyn/configs/train/dataset/defaults.yaml
|
|
62
|
+
audyn/configs/train/dataset/random-stems-musdb18.yaml
|
|
63
|
+
audyn/configs/train/dataset/sortable-torch.yaml
|
|
64
|
+
audyn/configs/train/dataset/torch.yaml
|
|
65
|
+
audyn/configs/train/dataset/webdataset.yaml
|
|
66
|
+
audyn/configs/train/record/defaults.yaml
|
|
67
|
+
audyn/configs/train/record/template.yaml
|
|
12
68
|
audyn/criterion/__init__.py
|
|
13
69
|
audyn/criterion/autoregressive.py
|
|
14
70
|
audyn/criterion/base.py
|
|
@@ -21,11 +77,14 @@ audyn/criterion/glowtts.py
|
|
|
21
77
|
audyn/criterion/hifigan.py
|
|
22
78
|
audyn/criterion/lsgan.py
|
|
23
79
|
audyn/criterion/melspectrogram.py
|
|
80
|
+
audyn/criterion/pit.py
|
|
24
81
|
audyn/criterion/rvqvae.py
|
|
82
|
+
audyn/criterion/sdr.py
|
|
25
83
|
audyn/criterion/ssast.py
|
|
26
84
|
audyn/criterion/vqvae.py
|
|
27
85
|
audyn/functional/__init__.py
|
|
28
86
|
audyn/functional/activation.py
|
|
87
|
+
audyn/functional/bitnet.py
|
|
29
88
|
audyn/functional/clustering.py
|
|
30
89
|
audyn/functional/vector_quantization.py
|
|
31
90
|
audyn/metrics/__init__.py
|
|
@@ -34,24 +93,33 @@ audyn/metrics/crossmodal.py
|
|
|
34
93
|
audyn/metrics/retrieval.py
|
|
35
94
|
audyn/models/__init__.py
|
|
36
95
|
audyn/models/ast.py
|
|
96
|
+
audyn/models/conv_tasnet.py
|
|
97
|
+
audyn/models/dprnn_tasnet.py
|
|
37
98
|
audyn/models/encodec.py
|
|
38
99
|
audyn/models/fastspeech.py
|
|
39
100
|
audyn/models/gan.py
|
|
40
101
|
audyn/models/glowtts.py
|
|
41
102
|
audyn/models/hifigan.py
|
|
42
103
|
audyn/models/lextransformer.py
|
|
104
|
+
audyn/models/music_tagging_transformer.py
|
|
43
105
|
audyn/models/passt.py
|
|
44
106
|
audyn/models/pixelsnail.py
|
|
45
107
|
audyn/models/roformer.py
|
|
46
108
|
audyn/models/rvqvae.py
|
|
47
109
|
audyn/models/soundstream.py
|
|
48
110
|
audyn/models/ssast.py
|
|
111
|
+
audyn/models/tasnet.py
|
|
49
112
|
audyn/models/text_to_wave.py
|
|
50
113
|
audyn/models/vae.py
|
|
51
114
|
audyn/models/vqvae.py
|
|
52
115
|
audyn/models/waveglow.py
|
|
53
116
|
audyn/models/wavenet.py
|
|
117
|
+
audyn/models/wavenext.py
|
|
54
118
|
audyn/modules/activation.py
|
|
119
|
+
audyn/modules/bitnet.py
|
|
120
|
+
audyn/modules/conv_tasnet.py
|
|
121
|
+
audyn/modules/convnext.py
|
|
122
|
+
audyn/modules/dprnn.py
|
|
55
123
|
audyn/modules/duration_predictor.py
|
|
56
124
|
audyn/modules/encodec.py
|
|
57
125
|
audyn/modules/fastspeech.py
|
|
@@ -59,6 +127,9 @@ audyn/modules/film.py
|
|
|
59
127
|
audyn/modules/flow.py
|
|
60
128
|
audyn/modules/glow.py
|
|
61
129
|
audyn/modules/glowtts.py
|
|
130
|
+
audyn/modules/hifigan.py
|
|
131
|
+
audyn/modules/lora.py
|
|
132
|
+
audyn/modules/music_tagging_transformer.py
|
|
62
133
|
audyn/modules/normalization.py
|
|
63
134
|
audyn/modules/passt.py
|
|
64
135
|
audyn/modules/pixelcnn.py
|
|
@@ -66,11 +137,15 @@ audyn/modules/pixelsnail.py
|
|
|
66
137
|
audyn/modules/positional_encoding.py
|
|
67
138
|
audyn/modules/rvq.py
|
|
68
139
|
audyn/modules/soundstream.py
|
|
140
|
+
audyn/modules/tasnet.py
|
|
141
|
+
audyn/modules/transformer.py
|
|
142
|
+
audyn/modules/transforms.py
|
|
69
143
|
audyn/modules/vit.py
|
|
70
144
|
audyn/modules/vq.py
|
|
71
145
|
audyn/modules/vqvae.py
|
|
72
146
|
audyn/modules/waveglow.py
|
|
73
147
|
audyn/modules/wavenet.py
|
|
148
|
+
audyn/optim/__init__.py
|
|
74
149
|
audyn/optim/lr_scheduler.py
|
|
75
150
|
audyn/optim/optimizer.py
|
|
76
151
|
audyn/transforms/__init__.py
|
|
@@ -81,10 +156,19 @@ audyn/transforms/hifigan.py
|
|
|
81
156
|
audyn/transforms/hubert.py
|
|
82
157
|
audyn/transforms/kaldi.py
|
|
83
158
|
audyn/transforms/librosa.py
|
|
159
|
+
audyn/transforms/music_tagging_transformer.py
|
|
160
|
+
audyn/transforms/slicer.py
|
|
84
161
|
audyn/utils/__init__.py
|
|
85
162
|
audyn/utils/clip_grad.py
|
|
163
|
+
audyn/utils/_torch/compile.py
|
|
164
|
+
audyn/utils/_torchhub/__init__.py
|
|
165
|
+
audyn/utils/_torchhub/ast.py
|
|
166
|
+
audyn/utils/_torchhub/music_tagging_transformer.py
|
|
167
|
+
audyn/utils/_torchhub/passt.py
|
|
168
|
+
audyn/utils/_torchhub/ssast.py
|
|
86
169
|
audyn/utils/alignment/__init__.py
|
|
87
170
|
audyn/utils/alignment/monotonic_align.py
|
|
171
|
+
audyn/utils/compile/__init__.py
|
|
88
172
|
audyn/utils/data/__init__.py
|
|
89
173
|
audyn/utils/data/collator.py
|
|
90
174
|
audyn/utils/data/composer.py
|
|
@@ -101,9 +185,26 @@ audyn/utils/data/audioset/composer.py
|
|
|
101
185
|
audyn/utils/data/audioset/dataset.py
|
|
102
186
|
audyn/utils/data/audioset/distributed.py
|
|
103
187
|
audyn/utils/data/audioset/sampler.py
|
|
188
|
+
audyn/utils/data/birdclef/__init__.py
|
|
104
189
|
audyn/utils/data/birdclef/_common/__init__.py
|
|
190
|
+
audyn/utils/data/birdclef/_common/collater.py
|
|
191
|
+
audyn/utils/data/birdclef/_common/composer.py
|
|
192
|
+
audyn/utils/data/birdclef/_common/dataset.py
|
|
193
|
+
audyn/utils/data/birdclef/birdclef2021/__init__.py
|
|
194
|
+
audyn/utils/data/birdclef/birdclef2021/_download.py
|
|
195
|
+
audyn/utils/data/birdclef/birdclef2021/collator.py
|
|
196
|
+
audyn/utils/data/birdclef/birdclef2021/composer.py
|
|
197
|
+
audyn/utils/data/birdclef/birdclef2021/dataset.py
|
|
105
198
|
audyn/utils/data/birdclef/birdclef2022/__init__.py
|
|
106
199
|
audyn/utils/data/birdclef/birdclef2022/_download.py
|
|
200
|
+
audyn/utils/data/birdclef/birdclef2022/collator.py
|
|
201
|
+
audyn/utils/data/birdclef/birdclef2022/composer.py
|
|
202
|
+
audyn/utils/data/birdclef/birdclef2022/dataset.py
|
|
203
|
+
audyn/utils/data/birdclef/birdclef2023/__init__.py
|
|
204
|
+
audyn/utils/data/birdclef/birdclef2023/_download.py
|
|
205
|
+
audyn/utils/data/birdclef/birdclef2023/collator.py
|
|
206
|
+
audyn/utils/data/birdclef/birdclef2023/composer.py
|
|
207
|
+
audyn/utils/data/birdclef/birdclef2023/dataset.py
|
|
107
208
|
audyn/utils/data/birdclef/birdclef2024/__init__.py
|
|
108
209
|
audyn/utils/data/birdclef/birdclef2024/_download.py
|
|
109
210
|
audyn/utils/data/birdclef/birdclef2024/collator.py
|
|
@@ -117,12 +218,29 @@ audyn/utils/data/clotho/text/symbols.py
|
|
|
117
218
|
audyn/utils/data/clotho/text/tokenization.py
|
|
118
219
|
audyn/utils/data/cmudict/__init__.py
|
|
119
220
|
audyn/utils/data/cmudict/indexing.py
|
|
221
|
+
audyn/utils/data/download/__init__.py
|
|
222
|
+
audyn/utils/data/hifigan/__init__.py
|
|
223
|
+
audyn/utils/data/hifigan/composer.py
|
|
224
|
+
audyn/utils/data/libritts/__init__.py
|
|
225
|
+
audyn/utils/data/libritts/_download.py
|
|
226
|
+
audyn/utils/data/msd/__init__.py
|
|
227
|
+
audyn/utils/data/msd/_download.py
|
|
228
|
+
audyn/utils/data/mtat/__init__.py
|
|
229
|
+
audyn/utils/data/mtat/_download.py
|
|
230
|
+
audyn/utils/data/mtg_jamendo/__init__.py
|
|
231
|
+
audyn/utils/data/mtg_jamendo/_download.py
|
|
232
|
+
audyn/utils/data/musdb18/__init__.py
|
|
233
|
+
audyn/utils/data/musdb18/_download.py
|
|
234
|
+
audyn/utils/data/musdb18/dataset.py
|
|
235
|
+
audyn/utils/data/musdb18/sampler.py
|
|
120
236
|
audyn/utils/data/tacotron/__init__.py
|
|
121
237
|
audyn/utils/data/tacotron/text/indexing.py
|
|
122
238
|
audyn/utils/data/tacotron/text/normalization.py
|
|
123
239
|
audyn/utils/data/tacotron/text/numbers.py
|
|
124
240
|
audyn/utils/data/tacotron/text/symbols.py
|
|
125
241
|
audyn/utils/data/tacotron/text/tokenization.py
|
|
242
|
+
audyn/utils/data/vctk/__init__.py
|
|
243
|
+
audyn/utils/data/vctk/_download.py
|
|
126
244
|
audyn/utils/distributed/__init__.py
|
|
127
245
|
audyn/utils/driver/__init__.py
|
|
128
246
|
audyn/utils/driver/_decorator.py
|
|
@@ -131,49 +249,6 @@ audyn/utils/driver/feat_to_wave.py
|
|
|
131
249
|
audyn/utils/driver/gan.py
|
|
132
250
|
audyn/utils/driver/text_to_feat.py
|
|
133
251
|
audyn/utils/driver/text_to_wave.py
|
|
134
|
-
audyn/utils/driver/_conf_template/config.yaml
|
|
135
|
-
audyn/utils/driver/_conf_template/criterion/cross_entropy.yaml
|
|
136
|
-
audyn/utils/driver/_conf_template/criterion/vqvae.yaml
|
|
137
|
-
audyn/utils/driver/_conf_template/data/defaults.yaml
|
|
138
|
-
audyn/utils/driver/_conf_template/lr_scheduler/defaults.yaml
|
|
139
|
-
audyn/utils/driver/_conf_template/lr_scheduler/none.yaml
|
|
140
|
-
audyn/utils/driver/_conf_template/lr_scheduler/transformer.yaml
|
|
141
|
-
audyn/utils/driver/_conf_template/model/defaults.yaml
|
|
142
|
-
audyn/utils/driver/_conf_template/model/gan.yaml
|
|
143
|
-
audyn/utils/driver/_conf_template/optimizer/adam.yaml
|
|
144
|
-
audyn/utils/driver/_conf_template/optimizer/adam_ema.yaml
|
|
145
|
-
audyn/utils/driver/_conf_template/optimizer/adamw.yaml
|
|
146
|
-
audyn/utils/driver/_conf_template/optimizer/gan.yaml
|
|
147
|
-
audyn/utils/driver/_conf_template/preprocess/defaults.yaml
|
|
148
|
-
audyn/utils/driver/_conf_template/preprocess/ljspeech_text-to-feat.yaml
|
|
149
|
-
audyn/utils/driver/_conf_template/preprocess/text-to-feat.yaml
|
|
150
|
-
audyn/utils/driver/_conf_template/preprocess/text-to-wave.yaml
|
|
151
|
-
audyn/utils/driver/_conf_template/system/cpu.yaml
|
|
152
|
-
audyn/utils/driver/_conf_template/system/cuda.yaml
|
|
153
|
-
audyn/utils/driver/_conf_template/system/cuda_amp.yaml
|
|
154
|
-
audyn/utils/driver/_conf_template/system/cuda_ddp.yaml
|
|
155
|
-
audyn/utils/driver/_conf_template/system/cuda_ddp_amp.yaml
|
|
156
|
-
audyn/utils/driver/_conf_template/system/defaults.yaml
|
|
157
|
-
audyn/utils/driver/_conf_template/system/mps.yaml
|
|
158
|
-
audyn/utils/driver/_conf_template/test/defaults.yaml
|
|
159
|
-
audyn/utils/driver/_conf_template/test/text_to_wave.yaml
|
|
160
|
-
audyn/utils/driver/_conf_template/test/dataloader/defaults.yaml
|
|
161
|
-
audyn/utils/driver/_conf_template/test/dataset/defaults.yaml
|
|
162
|
-
audyn/utils/driver/_conf_template/test/dataset/torch.yaml
|
|
163
|
-
audyn/utils/driver/_conf_template/train/defaults.yaml
|
|
164
|
-
audyn/utils/driver/_conf_template/train/gan.yaml
|
|
165
|
-
audyn/utils/driver/_conf_template/train/template.yaml
|
|
166
|
-
audyn/utils/driver/_conf_template/train/text-to-feat+pretrained_feat-to-wave.yaml
|
|
167
|
-
audyn/utils/driver/_conf_template/train/clip_gradient/defaults.yaml
|
|
168
|
-
audyn/utils/driver/_conf_template/train/clip_gradient/gan.yaml
|
|
169
|
-
audyn/utils/driver/_conf_template/train/dataloader/defaults.yaml
|
|
170
|
-
audyn/utils/driver/_conf_template/train/dataloader/sequential-batch.yaml
|
|
171
|
-
audyn/utils/driver/_conf_template/train/dataset/defaults.yaml
|
|
172
|
-
audyn/utils/driver/_conf_template/train/dataset/sortable-torch.yaml
|
|
173
|
-
audyn/utils/driver/_conf_template/train/dataset/torch.yaml
|
|
174
|
-
audyn/utils/driver/_conf_template/train/dataset/webdataset.yaml
|
|
175
|
-
audyn/utils/driver/_conf_template/train/record/defaults.yaml
|
|
176
|
-
audyn/utils/driver/_conf_template/train/record/template.yaml
|
|
177
252
|
audyn/utils/duration/__init__.py
|
|
178
253
|
audyn/utils/github/__init__.py
|
|
179
254
|
audyn/utils/hydra/__init__.py
|
|
@@ -181,6 +256,9 @@ audyn/utils/hydra/utils.py
|
|
|
181
256
|
audyn/utils/lab/__init__.py
|
|
182
257
|
audyn/utils/logging/__init__.py
|
|
183
258
|
audyn/utils/model/__init__.py
|
|
259
|
+
audyn/utils/modules/__init__.py
|
|
260
|
+
audyn/utils/modules/bitnet.py
|
|
261
|
+
audyn/utils/modules/lora.py
|
|
184
262
|
audyn/utils/music/__init__.py
|
|
185
263
|
audyn/utils/parallel/__init__.py
|
|
186
264
|
audyn/utils/tensorboard/__init__.py
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
audyn-decode-musdb18 = audyn.bin.decode_musdb18:main
|
|
3
|
+
audyn-download-mtat = audyn.bin.download_mtat:main
|
|
4
|
+
audyn-download-mtg-jamando = audyn.bin.download_mtg_jamendo:main
|
|
5
|
+
audyn-download-musdb18 = audyn.bin.download_musdb18:main
|
|
6
|
+
audyn-download-openmic2018 = audyn.bin.download_openmic2018:main
|
|
7
|
+
audyn-parse-run-command = audyn.bin.parse_run_command:main
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
omegaconf
|
|
2
2
|
hydra-core
|
|
3
|
-
matplotlib
|
|
4
3
|
torch
|
|
5
4
|
torchaudio
|
|
6
5
|
torchtext
|
|
7
6
|
torchvision
|
|
8
7
|
tensorboard
|
|
8
|
+
numpy<2.0
|
|
9
9
|
webdataset
|
|
10
10
|
inflect
|
|
11
11
|
|
|
12
12
|
[:python_version == "3.8"]
|
|
13
13
|
importlib_resources<6.2
|
|
14
14
|
|
|
15
|
+
[:sys_platform != "win32"]
|
|
16
|
+
matplotlib
|
|
17
|
+
|
|
18
|
+
[:sys_platform == "win32"]
|
|
19
|
+
matplotlib<3.9.1
|
|
20
|
+
|
|
15
21
|
[dev]
|
|
16
22
|
flake8
|
|
17
23
|
black
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Audyn
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: A PyTorch toolkit for audio synthesis.
|
|
5
5
|
Author: Takuya Hasumi
|
|
6
6
|
License: Apache License
|
|
@@ -212,12 +212,14 @@ License-File: LICENSE
|
|
|
212
212
|
Requires-Dist: importlib_resources<6.2; python_version == "3.8"
|
|
213
213
|
Requires-Dist: omegaconf
|
|
214
214
|
Requires-Dist: hydra-core
|
|
215
|
-
Requires-Dist: matplotlib
|
|
215
|
+
Requires-Dist: matplotlib<3.9.1; sys_platform == "win32"
|
|
216
|
+
Requires-Dist: matplotlib; sys_platform != "win32"
|
|
216
217
|
Requires-Dist: torch
|
|
217
218
|
Requires-Dist: torchaudio
|
|
218
219
|
Requires-Dist: torchtext
|
|
219
220
|
Requires-Dist: torchvision
|
|
220
221
|
Requires-Dist: tensorboard
|
|
222
|
+
Requires-Dist: numpy<2.0
|
|
221
223
|
Requires-Dist: webdataset
|
|
222
224
|
Requires-Dist: inflect
|
|
223
225
|
Provides-Extra: recipes
|
|
@@ -241,6 +243,27 @@ Requires-Dist: pytest-cov; extra == "tests"
|
|
|
241
243
|
|
|
242
244
|
Audyn is PyTorch toolkit for audio synthesis.
|
|
243
245
|
|
|
246
|
+
## Build Status
|
|
247
|
+
|
|
248
|
+
| Python/PyTorch | Ubuntu | MacOS | Windows |
|
|
249
|
+
|:-:|:-:|:-:|:-:|
|
|
250
|
+
| 3.8/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.8_torch-2.0.yaml) |
|
|
251
|
+
| 3.8/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.8_torch-2.1.yaml) |
|
|
252
|
+
| 3.8/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.2.yaml) | |
|
|
253
|
+
| 3.8/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.3.yaml) | | |
|
|
254
|
+
| 3.9/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.9_torch-2.0.yaml) |
|
|
255
|
+
| 3.9/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.9_torch-2.1.yaml) |
|
|
256
|
+
| 3.9/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.2.yaml) | |
|
|
257
|
+
| 3.9/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.3.yaml) | | |
|
|
258
|
+
| 3.10/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.10_torch-2.0.yaml) |
|
|
259
|
+
| 3.10/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.10_torch-2.1.yaml) |
|
|
260
|
+
| 3.10/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.2.yaml) | |
|
|
261
|
+
| 3.10/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.3.yaml) | | |
|
|
262
|
+
| 3.11/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.11_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.11_torch-2.0.yaml) |
|
|
263
|
+
| 3.11/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.11_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.11_torch-2.1.yaml) |
|
|
264
|
+
| 3.11/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.2.yaml) | | |
|
|
265
|
+
| 3.11/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.3.yaml) | | |
|
|
266
|
+
|
|
244
267
|
## Installation
|
|
245
268
|
You can install by pip.
|
|
246
269
|
```shell
|
|
@@ -274,7 +297,8 @@ pip install -e "."
|
|
|
274
297
|
|
|
275
298
|
## Development
|
|
276
299
|
```shell
|
|
277
|
-
|
|
300
|
+
git clone https://github.com/tky823/Audyn.git
|
|
301
|
+
cd Audyn
|
|
278
302
|
pip install -e ".[recipes,dev,tests]"
|
|
279
303
|
```
|
|
280
304
|
|
|
@@ -300,3 +324,12 @@ sphinx-autobuild docs docs/_build/html
|
|
|
300
324
|
```shell
|
|
301
325
|
pytest tests/package
|
|
302
326
|
```
|
|
327
|
+
|
|
328
|
+
To include slow tests
|
|
329
|
+
```shell
|
|
330
|
+
pytest tests/package --runslow
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
## License
|
|
334
|
+
- Apache License, Version 2.0 **EXCEPT FOR WEIGHTS OF PRETRAINED MODELS**
|
|
335
|
+
- Weights for some of the pre-trained models are extracted from the official implementations. Their licenses follow the official implementations.
|
audyn-0.0.3/README.md
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# Audyn
|
|
2
|
+
[](https://codecov.io/gh/tky823/Audyn)
|
|
3
|
+
|
|
4
|
+
Audyn is PyTorch toolkit for audio synthesis.
|
|
5
|
+
|
|
6
|
+
## Build Status
|
|
7
|
+
|
|
8
|
+
| Python/PyTorch | Ubuntu | MacOS | Windows |
|
|
9
|
+
|:-:|:-:|:-:|:-:|
|
|
10
|
+
| 3.8/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.8_torch-2.0.yaml) |
|
|
11
|
+
| 3.8/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.8_torch-2.1.yaml) |
|
|
12
|
+
| 3.8/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.8_torch-2.2.yaml) | |
|
|
13
|
+
| 3.8/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.8_torch-2.3.yaml) | | |
|
|
14
|
+
| 3.9/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.9_torch-2.0.yaml) |
|
|
15
|
+
| 3.9/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.9_torch-2.1.yaml) |
|
|
16
|
+
| 3.9/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.9_torch-2.2.yaml) | |
|
|
17
|
+
| 3.9/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.9_torch-2.3.yaml) | | |
|
|
18
|
+
| 3.10/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.10_torch-2.0.yaml) |
|
|
19
|
+
| 3.10/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.10_torch-2.1.yaml) |
|
|
20
|
+
| 3.10/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.2.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.10_torch-2.2.yaml) | |
|
|
21
|
+
| 3.10/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.10_torch-2.3.yaml) | | |
|
|
22
|
+
| 3.11/2.0 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.11_torch-2.0.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.11_torch-2.0.yaml) |
|
|
23
|
+
| 3.11/2.1 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_macos-13_python-3.11_torch-2.1.yaml) | [](https://github.com/tky823/Audyn/actions/workflows/test_package_windows-latest_python-3.11_torch-2.1.yaml) |
|
|
24
|
+
| 3.11/2.2 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.2.yaml) | | |
|
|
25
|
+
| 3.11/2.3 | [](https://github.com/tky823/Audyn/actions/workflows/test_package_ubuntu-latest_python-3.11_torch-2.3.yaml) | | |
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
You can install by pip.
|
|
29
|
+
```shell
|
|
30
|
+
pip install git+https://github.com/tky823/Audyn.git
|
|
31
|
+
```
|
|
32
|
+
or clone this repository.
|
|
33
|
+
```shell
|
|
34
|
+
git clone https://github.com/tky823/Audyn.git
|
|
35
|
+
cd Audyn
|
|
36
|
+
pip install -e .
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If you need to run recipes, add `[recipes]` as follows:
|
|
40
|
+
```shell
|
|
41
|
+
# In Audyn/
|
|
42
|
+
pip install -e ".[recipes]"
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
If you use MacOS, you may need to set `MACOSX_DEPLOYMENT_TARGET` during installation to build C++ related modules.
|
|
46
|
+
|
|
47
|
+
### C++ extension
|
|
48
|
+
We use [C++ extension](https://pytorch.org/tutorials/advanced/cpp_extension.html) to search monotonic alignment in some models (e.g. GlowTTS).
|
|
49
|
+
To take full advantage of computational efficiency, set appropriate value of `OMP_NUM_THREADS` and `CXX` during installation:
|
|
50
|
+
|
|
51
|
+
```shell
|
|
52
|
+
# In Audyn/
|
|
53
|
+
export CXX=<PATH/TO/CPP/COMPILER> # e.g. /usr/bin/c++
|
|
54
|
+
export OMP_NUM_THREADS=<SUITABLE/VALUE/FOR/ENVIRONMENT>
|
|
55
|
+
pip install -e "."
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Development
|
|
59
|
+
```shell
|
|
60
|
+
git clone https://github.com/tky823/Audyn.git
|
|
61
|
+
cd Audyn
|
|
62
|
+
pip install -e ".[recipes,dev,tests]"
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Build Documentation Locally (optional)
|
|
66
|
+
To build the documentation locally, you have to include `docs` when installing `Audyn`.
|
|
67
|
+
```shell
|
|
68
|
+
pip install -e ".[docs]"
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
When you build the documentation, run the following command.
|
|
72
|
+
```shell
|
|
73
|
+
cd docs/
|
|
74
|
+
make html
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Or, you can build the documentation automatically using `sphinx-autobuild`.
|
|
78
|
+
```shell
|
|
79
|
+
# in Audyn/
|
|
80
|
+
sphinx-autobuild docs docs/_build/html
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Test
|
|
84
|
+
```shell
|
|
85
|
+
pytest tests/package
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
To include slow tests
|
|
89
|
+
```shell
|
|
90
|
+
pytest tests/package --runslow
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## License
|
|
94
|
+
- Apache License, Version 2.0 **EXCEPT FOR WEIGHTS OF PRETRAINED MODELS**
|
|
95
|
+
- Weights for some of the pre-trained models are extracted from the official implementations. Their licenses follow the official implementations.
|