├── LICENSE ├── README.md ├── README_EN.md ├── binarize.py ├── dataset.py ├── dictionary └── opencpop-extension.txt ├── evaluate.py ├── infer.py ├── modules ├── AP_detector │ ├── 1 │ ├── __init__.py │ ├── base_detector.py │ ├── loudnesss_pectralcentroid_detector.py │ └── none_detector.py ├── __init__.py ├── g2p │ ├── 1 │ ├── __init__.py │ ├── base_g2p.py │ ├── dictionary_g2p.py │ ├── none_g2p.py │ ├── phoneme_g2p.py │ ├── readme_g2p.md │ └── readme_g2p_zh.md ├── layer │ ├── 1 │ ├── __init__.py │ ├── activation │ │ ├── 1 │ │ ├── GLU.py │ │ └── __init__.py │ ├── backbone │ │ ├── 1 │ │ ├── __init__.py │ │ └── unet.py │ ├── block │ │ ├── 1 │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── conformer.py │ │ ├── convolution.py │ │ ├── func_module.py │ │ ├── residual.py │ │ └── resnet_block.py │ └── scaling │ │ ├── 1 │ │ ├── __init__.py │ │ ├── base.py │ │ └── stride_conv.py ├── loss │ ├── 1 │ ├── BinaryEMDLoss.py │ ├── GHMLoss.py │ └── __init__.py ├── rmvpe │ ├── 1 │ ├── __init__.py │ ├── constants.py │ ├── deepunet.py │ ├── inference.py │ ├── model.py │ ├── seq.py │ ├── spec.py │ └── utils.py ├── scheduler │ ├── 1 │ ├── __init__.py │ ├── gaussian_ramp_up_scheduler.py │ └── none_scheduler.py ├── task │ ├── 1 │ └── forced_alignment.py └── utils │ ├── 1 │ ├── __init__.py │ ├── get_melspec.py │ ├── load_wav.py │ └── plot.py ├── requirements.txt ├── sofa_ai.py ├── some_of_closevpi ├── 1 └── _S8W(1E3_4HO(J]CXS7O[LO.jpg └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/README_EN.md -------------------------------------------------------------------------------- /binarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/binarize.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/dataset.py -------------------------------------------------------------------------------- /dictionary/opencpop-extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/dictionary/opencpop-extension.txt -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/evaluate.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/infer.py -------------------------------------------------------------------------------- /modules/AP_detector/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/AP_detector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/AP_detector/__init__.py -------------------------------------------------------------------------------- /modules/AP_detector/base_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/AP_detector/base_detector.py -------------------------------------------------------------------------------- /modules/AP_detector/loudnesss_pectralcentroid_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/AP_detector/loudnesss_pectralcentroid_detector.py -------------------------------------------------------------------------------- /modules/AP_detector/none_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/AP_detector/none_detector.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/g2p/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/g2p/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/__init__.py -------------------------------------------------------------------------------- /modules/g2p/base_g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/base_g2p.py -------------------------------------------------------------------------------- /modules/g2p/dictionary_g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/dictionary_g2p.py -------------------------------------------------------------------------------- /modules/g2p/none_g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/none_g2p.py -------------------------------------------------------------------------------- /modules/g2p/phoneme_g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/phoneme_g2p.py -------------------------------------------------------------------------------- /modules/g2p/readme_g2p.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/readme_g2p.md -------------------------------------------------------------------------------- /modules/g2p/readme_g2p_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/g2p/readme_g2p_zh.md -------------------------------------------------------------------------------- /modules/layer/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/layer/activation/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/layer/activation/GLU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/activation/GLU.py -------------------------------------------------------------------------------- /modules/layer/activation/__init__.py: -------------------------------------------------------------------------------- 1 | from .GLU import * 2 | -------------------------------------------------------------------------------- /modules/layer/backbone/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/layer/backbone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/layer/backbone/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/backbone/unet.py -------------------------------------------------------------------------------- /modules/layer/block/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/layer/block/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/__init__.py -------------------------------------------------------------------------------- /modules/layer/block/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/attention.py -------------------------------------------------------------------------------- /modules/layer/block/conformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/conformer.py -------------------------------------------------------------------------------- /modules/layer/block/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/convolution.py -------------------------------------------------------------------------------- /modules/layer/block/func_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/func_module.py -------------------------------------------------------------------------------- /modules/layer/block/residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/residual.py -------------------------------------------------------------------------------- /modules/layer/block/resnet_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/block/resnet_block.py -------------------------------------------------------------------------------- /modules/layer/scaling/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/layer/scaling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/layer/scaling/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/scaling/base.py -------------------------------------------------------------------------------- /modules/layer/scaling/stride_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/layer/scaling/stride_conv.py -------------------------------------------------------------------------------- /modules/loss/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/loss/BinaryEMDLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/loss/BinaryEMDLoss.py -------------------------------------------------------------------------------- /modules/loss/GHMLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/loss/GHMLoss.py -------------------------------------------------------------------------------- /modules/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/loss/__init__.py -------------------------------------------------------------------------------- /modules/rmvpe/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/rmvpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/__init__.py -------------------------------------------------------------------------------- /modules/rmvpe/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/constants.py -------------------------------------------------------------------------------- /modules/rmvpe/deepunet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/deepunet.py -------------------------------------------------------------------------------- /modules/rmvpe/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/inference.py -------------------------------------------------------------------------------- /modules/rmvpe/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/model.py -------------------------------------------------------------------------------- /modules/rmvpe/seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/seq.py -------------------------------------------------------------------------------- /modules/rmvpe/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/spec.py -------------------------------------------------------------------------------- /modules/rmvpe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/rmvpe/utils.py -------------------------------------------------------------------------------- /modules/scheduler/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/scheduler/__init__.py -------------------------------------------------------------------------------- /modules/scheduler/gaussian_ramp_up_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/scheduler/gaussian_ramp_up_scheduler.py -------------------------------------------------------------------------------- /modules/scheduler/none_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/scheduler/none_scheduler.py -------------------------------------------------------------------------------- /modules/task/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/task/forced_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/task/forced_alignment.py -------------------------------------------------------------------------------- /modules/utils/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils/get_melspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/utils/get_melspec.py -------------------------------------------------------------------------------- /modules/utils/load_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/utils/load_wav.py -------------------------------------------------------------------------------- /modules/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/modules/utils/plot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/requirements.txt -------------------------------------------------------------------------------- /sofa_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/sofa_ai.py -------------------------------------------------------------------------------- /some_of_closevpi/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /some_of_closevpi/_S8W(1E3_4HO(J]CXS7O[LO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/some_of_closevpi/_S8W(1E3_4HO(J]CXS7O[LO.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colstone/SOFA_AI/HEAD/train.py --------------------------------------------------------------------------------