Spaces:
Sleeping
Sleeping
Commit
·
ea84da0
1
Parent(s):
1d9f047
Update app.py
Browse files
app.py
CHANGED
@@ -17,11 +17,26 @@ VOICE_OPTIONS = [
|
|
17 |
def inference(
|
18 |
text,
|
19 |
voice,
|
|
|
20 |
preset_option,
|
21 |
):
|
22 |
-
|
23 |
texts = [text]
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
voices = [voice]
|
26 |
|
27 |
if len(voices) == 1:
|
@@ -53,6 +68,11 @@ def main():
|
|
53 |
VOICE_OPTIONS, value="jane_eyre", label="Select voice:", type="value"
|
54 |
)
|
55 |
|
|
|
|
|
|
|
|
|
|
|
56 |
preset_option = gr.Radio(
|
57 |
["ultra_fast", "fast", "standard", "high_quality"],
|
58 |
label="ultra_fast for quick inference and high_quality for better inference",
|
@@ -66,6 +86,7 @@ def main():
|
|
66 |
inputs=[
|
67 |
text,
|
68 |
voice,
|
|
|
69 |
preset_option,
|
70 |
],
|
71 |
title=title,
|
|
|
17 |
def inference(
|
18 |
text,
|
19 |
voice,
|
20 |
+
emotion_option,
|
21 |
preset_option,
|
22 |
):
|
23 |
+
|
24 |
texts = [text]
|
25 |
|
26 |
+
Angry_tone = "[I am so angry]"
|
27 |
+
Sad_tone = "[I am so sad]"
|
28 |
+
Happy_tone = "[I am so happy]"
|
29 |
+
Scared_tone = "[I am so scared]"
|
30 |
+
|
31 |
+
if emotion_option == "Angry":
|
32 |
+
text = Angry_tone + text
|
33 |
+
if emotion_option == "Sad":
|
34 |
+
text = Sad_tone + text
|
35 |
+
if emotion_option == "Happy":
|
36 |
+
text = Happy_tone + text
|
37 |
+
if emotion_option == "Scared":
|
38 |
+
text = Scared_tone + text
|
39 |
+
|
40 |
voices = [voice]
|
41 |
|
42 |
if len(voices) == 1:
|
|
|
68 |
VOICE_OPTIONS, value="jane_eyre", label="Select voice:", type="value"
|
69 |
)
|
70 |
|
71 |
+
emotion_option = gr.Radio(
|
72 |
+
["Angry", "Sad", "Happy", "Scared"],
|
73 |
+
type="value",
|
74 |
+
)
|
75 |
+
|
76 |
preset_option = gr.Radio(
|
77 |
["ultra_fast", "fast", "standard", "high_quality"],
|
78 |
label="ultra_fast for quick inference and high_quality for better inference",
|
|
|
86 |
inputs=[
|
87 |
text,
|
88 |
voice,
|
89 |
+
emotion_option,
|
90 |
preset_option,
|
91 |
],
|
92 |
title=title,
|