├── README.md ├── data └── opencpop │ ├── mels │ └── 2001000001.npy │ ├── pitch │ └── 2001000001.npy │ ├── test.list │ ├── testset.txt │ ├── train.list │ ├── trainset.txt │ └── wavs │ └── 2001000001.wav ├── egs ├── visinger2 │ ├── bash │ │ ├── inference.sh │ │ ├── preprocess.sh │ │ └── train.sh │ ├── config.json │ ├── dataset.py │ ├── inference.py │ ├── models.py │ └── train.py └── visinger2_flow │ ├── bash │ ├── inference.sh │ ├── preprocess.sh │ └── train.sh │ ├── config.json │ ├── dataset.py │ ├── inference.py │ ├── models.py │ └── train.py ├── modules ├── attentions.py ├── commons.py ├── ddsp.py ├── losses.py ├── modules.py ├── stft.py └── transforms.py ├── preprocess ├── mel_processing.py └── preprocess.py ├── requirements_3090.txt ├── text └── npu │ ├── __init__.py │ ├── symbol_converter.py │ └── symbols.py └── utils ├── audio.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/README.md -------------------------------------------------------------------------------- /data/opencpop/mels/2001000001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/mels/2001000001.npy -------------------------------------------------------------------------------- /data/opencpop/pitch/2001000001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/pitch/2001000001.npy -------------------------------------------------------------------------------- /data/opencpop/test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/test.list -------------------------------------------------------------------------------- /data/opencpop/testset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/testset.txt -------------------------------------------------------------------------------- /data/opencpop/train.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/train.list -------------------------------------------------------------------------------- /data/opencpop/trainset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/trainset.txt -------------------------------------------------------------------------------- /data/opencpop/wavs/2001000001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/data/opencpop/wavs/2001000001.wav -------------------------------------------------------------------------------- /egs/visinger2/bash/inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/bash/inference.sh -------------------------------------------------------------------------------- /egs/visinger2/bash/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/bash/preprocess.sh -------------------------------------------------------------------------------- /egs/visinger2/bash/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/bash/train.sh -------------------------------------------------------------------------------- /egs/visinger2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/config.json -------------------------------------------------------------------------------- /egs/visinger2/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/dataset.py -------------------------------------------------------------------------------- /egs/visinger2/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/inference.py -------------------------------------------------------------------------------- /egs/visinger2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/models.py -------------------------------------------------------------------------------- /egs/visinger2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2/train.py -------------------------------------------------------------------------------- /egs/visinger2_flow/bash/inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/bash/inference.sh -------------------------------------------------------------------------------- /egs/visinger2_flow/bash/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/bash/preprocess.sh -------------------------------------------------------------------------------- /egs/visinger2_flow/bash/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/bash/train.sh -------------------------------------------------------------------------------- /egs/visinger2_flow/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/config.json -------------------------------------------------------------------------------- /egs/visinger2_flow/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/dataset.py -------------------------------------------------------------------------------- /egs/visinger2_flow/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/inference.py -------------------------------------------------------------------------------- /egs/visinger2_flow/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/models.py -------------------------------------------------------------------------------- /egs/visinger2_flow/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/egs/visinger2_flow/train.py -------------------------------------------------------------------------------- /modules/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/attentions.py -------------------------------------------------------------------------------- /modules/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/commons.py -------------------------------------------------------------------------------- /modules/ddsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/ddsp.py -------------------------------------------------------------------------------- /modules/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/losses.py -------------------------------------------------------------------------------- /modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/modules.py -------------------------------------------------------------------------------- /modules/stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/stft.py -------------------------------------------------------------------------------- /modules/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/modules/transforms.py -------------------------------------------------------------------------------- /preprocess/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/preprocess/mel_processing.py -------------------------------------------------------------------------------- /preprocess/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/preprocess/preprocess.py -------------------------------------------------------------------------------- /requirements_3090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/requirements_3090.txt -------------------------------------------------------------------------------- /text/npu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/text/npu/__init__.py -------------------------------------------------------------------------------- /text/npu/symbol_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/text/npu/symbol_converter.py -------------------------------------------------------------------------------- /text/npu/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/text/npu/symbols.py -------------------------------------------------------------------------------- /utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/utils/audio.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongmao/VISinger2/HEAD/utils/utils.py --------------------------------------------------------------------------------