├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── attentions.py ├── commons.py ├── configs ├── requirements.txt └── singing_base.json ├── data_utils.py ├── evaluate ├── evaluate_f0.py ├── evaluate_mcd.py ├── evaluate_semitone.py └── evaluate_vuv.py ├── evaluate_score.sh ├── filelists ├── singing_test.txt ├── singing_train.txt └── singing_valid.txt ├── losses.py ├── mel_processing.py ├── models.py ├── modules.py ├── normalize_wav.py ├── plot_f0.py ├── prepare ├── __init__.py ├── align_wav_spec.py ├── data_vits.py ├── data_vits_phn.py ├── data_vits_phn_ofuton.py ├── dur_to_frame.py ├── gen_ofuton_transcript.py ├── midi-HZ.scp ├── midi-note.scp ├── phone_map.py ├── phone_uv.py ├── preprocess.py ├── preprocess_jp.py ├── resample_wav.py └── resample_wav.sh ├── resource ├── 2005000151.wav ├── 2005000152.wav ├── 2006000186.wav ├── 2006000187.wav ├── 2008000268.wav ├── vising_loss.png └── vising_mel.png ├── train.py ├── train.sh ├── transforms.py ├── utils.py ├── vsinging_debug.py ├── vsinging_infer.py ├── vsinging_infer.txt ├── vsinging_infer_jp.py ├── vsinging_infer_jp.txt ├── vsinging_song.py └── vsinging_song_midi.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/_config.yml -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/attentions.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/commons.py -------------------------------------------------------------------------------- /configs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/configs/requirements.txt -------------------------------------------------------------------------------- /configs/singing_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/configs/singing_base.json -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/data_utils.py -------------------------------------------------------------------------------- /evaluate/evaluate_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/evaluate/evaluate_f0.py -------------------------------------------------------------------------------- /evaluate/evaluate_mcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/evaluate/evaluate_mcd.py -------------------------------------------------------------------------------- /evaluate/evaluate_semitone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/evaluate/evaluate_semitone.py -------------------------------------------------------------------------------- /evaluate/evaluate_vuv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/evaluate/evaluate_vuv.py -------------------------------------------------------------------------------- /evaluate_score.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/evaluate_score.sh -------------------------------------------------------------------------------- /filelists/singing_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/filelists/singing_test.txt -------------------------------------------------------------------------------- /filelists/singing_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/filelists/singing_train.txt -------------------------------------------------------------------------------- /filelists/singing_valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/filelists/singing_valid.txt -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/modules.py -------------------------------------------------------------------------------- /normalize_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/normalize_wav.py -------------------------------------------------------------------------------- /plot_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/plot_f0.py -------------------------------------------------------------------------------- /prepare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prepare/align_wav_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/align_wav_spec.py -------------------------------------------------------------------------------- /prepare/data_vits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/data_vits.py -------------------------------------------------------------------------------- /prepare/data_vits_phn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/data_vits_phn.py -------------------------------------------------------------------------------- /prepare/data_vits_phn_ofuton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/data_vits_phn_ofuton.py -------------------------------------------------------------------------------- /prepare/dur_to_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/dur_to_frame.py -------------------------------------------------------------------------------- /prepare/gen_ofuton_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/gen_ofuton_transcript.py -------------------------------------------------------------------------------- /prepare/midi-HZ.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/midi-HZ.scp -------------------------------------------------------------------------------- /prepare/midi-note.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/midi-note.scp -------------------------------------------------------------------------------- /prepare/phone_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/phone_map.py -------------------------------------------------------------------------------- /prepare/phone_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/phone_uv.py -------------------------------------------------------------------------------- /prepare/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/preprocess.py -------------------------------------------------------------------------------- /prepare/preprocess_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/preprocess_jp.py -------------------------------------------------------------------------------- /prepare/resample_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/resample_wav.py -------------------------------------------------------------------------------- /prepare/resample_wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/prepare/resample_wav.sh -------------------------------------------------------------------------------- /resource/2005000151.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/2005000151.wav -------------------------------------------------------------------------------- /resource/2005000152.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/2005000152.wav -------------------------------------------------------------------------------- /resource/2006000186.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/2006000186.wav -------------------------------------------------------------------------------- /resource/2006000187.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/2006000187.wav -------------------------------------------------------------------------------- /resource/2008000268.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/2008000268.wav -------------------------------------------------------------------------------- /resource/vising_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/vising_loss.png -------------------------------------------------------------------------------- /resource/vising_mel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/resource/vising_mel.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/train.sh -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/utils.py -------------------------------------------------------------------------------- /vsinging_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_debug.py -------------------------------------------------------------------------------- /vsinging_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_infer.py -------------------------------------------------------------------------------- /vsinging_infer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_infer.txt -------------------------------------------------------------------------------- /vsinging_infer_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_infer_jp.py -------------------------------------------------------------------------------- /vsinging_infer_jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_infer_jp.txt -------------------------------------------------------------------------------- /vsinging_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_song.py -------------------------------------------------------------------------------- /vsinging_song_midi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryuhoo/VISinger/HEAD/vsinging_song_midi.txt --------------------------------------------------------------------------------