Update app.py
Browse files
app.py
CHANGED
@@ -93,8 +93,8 @@ gr_interface = gr.Interface(
|
|
93 |
fn=gradio_generate,
|
94 |
inputs=input_text,
|
95 |
outputs=[output_audio],
|
96 |
-
title="
|
97 |
-
description="Generate audio using
|
98 |
allow_flagging=False,
|
99 |
examples=[
|
100 |
["An audience cheering and clapping"],
|
@@ -102,7 +102,12 @@ gr_interface = gr.Interface(
|
|
102 |
["A car engine revving"],
|
103 |
["A dog barking"],
|
104 |
["Emergency sirens wailing"],
|
105 |
-
["Whistling with birds chirping"]
|
|
|
|
|
|
|
|
|
|
|
106 |
],
|
107 |
cache_examples=False,
|
108 |
)
|
|
|
93 |
fn=gradio_generate,
|
94 |
inputs=input_text,
|
95 |
outputs=[output_audio],
|
96 |
+
title="TANGO: Text to Audio using Instruction-Guided Diffusion",
|
97 |
+
description="Generate audio using TANGO by providing a text prompt.",
|
98 |
allow_flagging=False,
|
99 |
examples=[
|
100 |
["An audience cheering and clapping"],
|
|
|
102 |
["A car engine revving"],
|
103 |
["A dog barking"],
|
104 |
["Emergency sirens wailing"],
|
105 |
+
["Whistling with birds chirping"],
|
106 |
+
["A dog barking and a man talking and a racing car passes by"],
|
107 |
+
["Motor vehicles are driving with loud engines and a person whistles"],
|
108 |
+
["People cheering in a stadium while rolling thunder and lightning strikes"],
|
109 |
+
["A helicopter is in flight"],
|
110 |
+
["A person snoring"]
|
111 |
],
|
112 |
cache_examples=False,
|
113 |
)
|