Spaces:
Running
on
Zero
Running
on
Zero
Change temp to 1.4
Browse files
app.py
CHANGED
|
@@ -114,7 +114,7 @@ with gr.Blocks(title="😻 KaniTTS - Text to Speech", theme=gr.themes.Default())
|
|
| 114 |
|
| 115 |
with gr.Accordion("Settings", open=False):
|
| 116 |
temp = gr.Slider(
|
| 117 |
-
minimum=0.1, maximum=1.5, value=1.
|
| 118 |
label="Temp",
|
| 119 |
)
|
| 120 |
top_p = gr.Slider(
|
|
@@ -156,14 +156,14 @@ with gr.Blocks(title="😻 KaniTTS - Text to Speech", theme=gr.themes.Default())
|
|
| 156 |
with gr.Row():
|
| 157 |
|
| 158 |
examples = [
|
| 159 |
-
["Anyway, um, so, um, tell me, tell me all about her. I mean, what's she like? Is she really, you know, pretty?", "male", 1.
|
| 160 |
-
["No, that does not make you a failure. No, sweetie, no. It just, uh, it just means that you're having a tough time...", "male", 1.
|
| 161 |
-
["I-- Oh, I am such an idiot sometimes. I'm so sorry. Um, I-I don't know where my head's at.", "male", 1.
|
| 162 |
-
["Got it. $300,000. I can definitely help you get a very good price for your property by selecting a realtor.", "female", 1.
|
| 163 |
-
["Holy fu- Oh my God! Don't you understand how dangerous it is
|
| 164 |
-
["You make my days brighter, and my wildest dreams feel like reality. How do you do that?", "female", 1.
|
| 165 |
-
["Great, and just a couple quick questions so we can match you with the right buyer. Is your home address still 330 East Charleston Road?", "base", 1.
|
| 166 |
-
["Oh, yeah. I mean did you want to get a quick snack together or maybe something before you go?", "female", 1.
|
| 167 |
]
|
| 168 |
|
| 169 |
|
|
|
|
| 114 |
|
| 115 |
with gr.Accordion("Settings", open=False):
|
| 116 |
temp = gr.Slider(
|
| 117 |
+
minimum=0.1, maximum=1.5, value=1.4, step=0.05,
|
| 118 |
label="Temp",
|
| 119 |
)
|
| 120 |
top_p = gr.Slider(
|
|
|
|
| 156 |
with gr.Row():
|
| 157 |
|
| 158 |
examples = [
|
| 159 |
+
["Anyway, um, so, um, tell me, tell me all about her. I mean, what's she like? Is she really, you know, pretty?", "male", 1.4, 0.95, 1.1, 1200],
|
| 160 |
+
["No, that does not make you a failure. No, sweetie, no. It just, uh, it just means that you're having a tough time...", "male", 1.4, 0.95, 1.1, 1200],
|
| 161 |
+
["I-- Oh, I am such an idiot sometimes. I'm so sorry. Um, I-I don't know where my head's at.", "male", 1.4, 0.95, 1.1, 1200],
|
| 162 |
+
["Got it. $300,000. I can definitely help you get a very good price for your property by selecting a realtor.", "female", 1.4, 0.95, 1.1, 1200],
|
| 163 |
+
["Holy fu- Oh my God! Don't you understand how dangerous it is?", "male", 1.4, 0.95, 1.1, 1200],
|
| 164 |
+
["You make my days brighter, and my wildest dreams feel like reality. How do you do that?", "female", 1.4, 0.95, 1.1, 1200],
|
| 165 |
+
["Great, and just a couple quick questions so we can match you with the right buyer. Is your home address still 330 East Charleston Road?", "base", 1.4, 0.95, 1.1, 1200],
|
| 166 |
+
["Oh, yeah. I mean did you want to get a quick snack together or maybe something before you go?", "female", 1.4, 0.95, 1.1, 1200],
|
| 167 |
]
|
| 168 |
|
| 169 |
|