JacoboMata
commited on
Commit
•
0779d98
1
Parent(s):
c022201
Fix must be Tensor, not tuple Error
Browse files
README.md
CHANGED
@@ -33,7 +33,7 @@ models, cfg, task = load_model_ensemble_and_task_from_hf_hub(
|
|
33 |
)
|
34 |
model = models[0]
|
35 |
TTSHubInterface.update_cfg_with_data_cfg(cfg, task.data_cfg)
|
36 |
-
generator = task.build_generator(model, cfg)
|
37 |
|
38 |
text = "Hola, esta es una prueba."
|
39 |
|
|
|
33 |
)
|
34 |
model = models[0]
|
35 |
TTSHubInterface.update_cfg_with_data_cfg(cfg, task.data_cfg)
|
36 |
+
generator = task.build_generator([model], cfg)
|
37 |
|
38 |
text = "Hola, esta es una prueba."
|
39 |
|