You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: arguments_classes/parler_tts_arguments.py
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@
4
4
@dataclass
5
5
classParlerTTSHandlerArguments:
6
6
tts_model_name: str=field(
7
-
default="ylacombe/parler-tts-mini-jenny-30H",
7
+
default="parler-tts/parler-mini-v1-jenny",
8
8
metadata={
9
-
"help": "The pretrained TTS model to use. Default is 'ylacombe/parler-tts-mini-jenny-30H'."
9
+
"help": "The pretrained TTS model to use. Default is 'parler-tts/parler-mini-v1-jenny'."
10
10
},
11
11
)
12
12
tts_device: str=field(
@@ -41,8 +41,7 @@ class ParlerTTSHandlerArguments:
41
41
)
42
42
description: str=field(
43
43
default=(
44
-
"A female speaker with a slightly low-pitched voice delivers her words quite expressively, in a very confined sounding environment with clear audio quality. "
45
-
"She speaks very fast."
44
+
"Jenny speaks at a slightly slow pace with an animated delivery with clear audio quality."
46
45
),
47
46
metadata={
48
47
"help": "Description of the speaker's voice and speaking style to guide the TTS model."
@@ -60,3 +59,9 @@ class ParlerTTSHandlerArguments:
60
59
"help": "When using compilation, the prompt as to be padded to closest power of 2. This parameters sets the maximun power of 2 possible."
61
60
},
62
61
)
62
+
use_default_speakers_list: bool=field(
63
+
default=False,
64
+
metadata={
65
+
"help": "Whether to use the default list of speakers or not."
0 commit comments