mirror of
https://github.com/babysor/MockingBird.git
synced 2024-03-22 13:11:31 +08:00
b617a87ee4
* Init ppg extractor and ppg2mel * add preprocess and training * FIx known issues * Update __init__.py Allow to gen audio * Fix length issue * Fix bug of preparing fid * Fix sample issues * Add UI usage of PPG-vc
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
// 使用 IntelliSense 了解相关属性。
|
|
// 悬停以查看现有属性的描述。
|
|
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: Web",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "web.py",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Python: Vocoder Preprocess",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "vocoder_preprocess.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["..\\audiodata"]
|
|
},
|
|
{
|
|
"name": "Python: Vocoder Train",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "vocoder_train.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["dev", "..\\audiodata"]
|
|
},
|
|
{
|
|
"name": "Python: Demo Box",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "demo_toolbox.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["-d","..\\audiodata"]
|
|
},
|
|
{
|
|
"name": "Python: Demo Box VC",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "demo_toolbox.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["-d","..\\audiodata","-vc"]
|
|
},
|
|
{
|
|
"name": "Python: Synth Train",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "synthesizer_train.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["my_run", "..\\"]
|
|
},
|
|
{
|
|
"name": "Python: PPG Convert",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "run.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["-c", ".\\ppg2mel\\saved_models\\seq2seq_mol_ppg2mel_vctk_libri_oneshotvc_r4_normMel_v2.yaml",
|
|
"-m", ".\\ppg2mel\\saved_models\\best_loss_step_304000.pth", "--wav_dir", ".\\wavs\\input", "--ref_wav_path", ".\\wavs\\pkq.mp3", "-o", ".\\wavs\\output\\"
|
|
]
|
|
},
|
|
]
|
|
}
|