Thank you for sharing the colab notebook.
Is there an example of english demo? In the current colab I have done the following:
I changed pretrained acoustic model to this:
config_path = "downloads/zh/muskit/exp/svs_with_lid/config.yaml" model_path = "downloads/zh/muskit/exp/svs_with_lid/119epoch.pth"
Which is from: Multilingual_four
Then I changed pretrained vcoder to this:
vocoder_config = "downloads/zh/pwg/config.yml" vocoder_checkpoint = "downloads/zh/pwg/checkpoint-1000000steps.pkl" print("successfully finished download vocoder")
Which is one of the models from results.
The final blocks gives me the error:
31 batch = sing_generation.preprocess_fn(str(row["id"]), info, 1.0) 32 batch = tensorify(batch) ---> 33 singing, _, _, _, _, _, _ = sing_generation(**batch)
I'm obviously doing something wrong. Can you give me any insight into how to do english models can be loaded?