From 678d8061a380a01fb9c2437ac96fb48afd8218a2 Mon Sep 17 00:00:00 2001 From: Hristiyan Genchev <40357617+genchev99@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:08:37 +0200 Subject: [PATCH] Actually list models instead of ModelManager ref --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3205c1b..63208e82 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ from TTS.api import TTS device = "cuda" if torch.cuda.is_available() else "cpu" # List available 🐸TTS models -print(TTS().list_models()) +print(TTS().list_models().list_models()) # Init TTS tts = TTS("tts_models/multilingual/multi-dataset/xtts_v2").to(device)