Spaces:
Running
on
A10G
Running
on
A10G
Commit
•
05b81fb
1
Parent(s):
c065520
use diffusers backend
Browse files- app.py +147 -243
- requirements.txt +3 -8
app.py
CHANGED
@@ -1,184 +1,119 @@
|
|
1 |
-
from huggingface_hub import hf_hub_download
|
2 |
-
import torch
|
3 |
-
import os
|
4 |
-
|
5 |
import gradio as gr
|
6 |
-
|
|
|
7 |
from share_btn import community_icon_html, loading_icon_html, share_js
|
8 |
|
9 |
-
os.environ["TOKENIZERS_PARALLELISM"] = "true"
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
guidance_scale,
|
19 |
-
random_seed,
|
20 |
-
n_candidates,
|
21 |
-
model_name=default_checkpoint,
|
22 |
-
):
|
23 |
-
global audioldm, current_model_name
|
24 |
-
torch.set_float32_matmul_precision("high")
|
25 |
|
26 |
-
if audioldm is None or model_name != current_model_name:
|
27 |
-
audioldm = build_model(model_name=model_name)
|
28 |
-
current_model_name = model_name
|
29 |
-
audioldm = torch.compile(audioldm)
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
37 |
guidance_scale=guidance_scale,
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
]
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
return waveform
|
47 |
|
48 |
css = """
|
49 |
a {
|
50 |
-
color: inherit;
|
51 |
-
|
52 |
-
}
|
53 |
-
.gradio-container {
|
54 |
font-family: 'IBM Plex Sans', sans-serif;
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
color: white;
|
59 |
-
border-color: #000000;
|
60 |
-
background: #000000;
|
61 |
-
}
|
62 |
-
input[type='range'] {
|
63 |
accent-color: #000000;
|
64 |
-
}
|
65 |
-
.dark input[type='range'] {
|
66 |
accent-color: #dfdfdf;
|
67 |
-
}
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
#gallery {
|
73 |
-
min-height: 22rem;
|
74 |
-
margin-bottom: 15px;
|
75 |
-
margin-left: auto;
|
76 |
-
margin-right: auto;
|
77 |
-
border-bottom-right-radius: .5rem !important;
|
78 |
-
border-bottom-left-radius: .5rem !important;
|
79 |
-
}
|
80 |
-
#gallery>div>.h-full {
|
81 |
min-height: 20rem;
|
82 |
-
}
|
83 |
-
.details:hover {
|
84 |
text-decoration: underline;
|
85 |
-
}
|
86 |
-
.gr-button {
|
87 |
white-space: nowrap;
|
88 |
-
}
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
--tw-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
--tw-ring-opacity: .5;
|
98 |
-
}
|
99 |
-
#advanced-btn {
|
100 |
-
font-size: .7rem !important;
|
101 |
-
line-height: 19px;
|
102 |
-
margin-top: 12px;
|
103 |
-
margin-bottom: 12px;
|
104 |
-
padding: 2px 8px;
|
105 |
border-radius: 14px !important;
|
106 |
-
}
|
107 |
-
#advanced-options {
|
108 |
margin-bottom: 20px;
|
109 |
-
}
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
border-bottom: 1px solid #e5e5e5;
|
115 |
-
}
|
116 |
-
.footer>p {
|
117 |
-
font-size: .8rem;
|
118 |
-
display: inline-block;
|
119 |
-
padding: 0 10px;
|
120 |
-
transform: translateY(10px);
|
121 |
-
background: white;
|
122 |
-
}
|
123 |
-
.dark .footer {
|
124 |
border-color: #303030;
|
125 |
-
}
|
126 |
-
.dark .footer>p {
|
127 |
background: #0b0f19;
|
128 |
-
}
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
}
|
134 |
-
#container-advanced-btns{
|
135 |
-
display: flex;
|
136 |
-
flex-wrap: wrap;
|
137 |
-
justify-content: space-between;
|
138 |
-
align-items: center;
|
139 |
-
}
|
140 |
-
.animate-spin {
|
141 |
animation: spin 1s linear infinite;
|
142 |
-
}
|
143 |
-
@keyframes spin {
|
144 |
from {
|
145 |
transform: rotate(0deg);
|
146 |
-
}
|
147 |
-
to {
|
148 |
transform: rotate(360deg);
|
149 |
}
|
150 |
-
}
|
151 |
-
|
152 |
-
|
153 |
-
margin-top: 10px;
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
}
|
159 |
-
#share-btn * {
|
160 |
all: unset;
|
161 |
-
}
|
162 |
-
|
163 |
-
|
164 |
-
min-height: 0px !important;
|
165 |
-
}
|
166 |
-
#share-btn-container .wrap {
|
167 |
display: none !important;
|
168 |
-
}
|
169 |
-
.gr-form{
|
170 |
flex: 1 1 50%; border-top-right-radius: 0; border-bottom-right-radius: 0;
|
171 |
-
}
|
172 |
-
#prompt-container{
|
173 |
gap: 0;
|
174 |
-
}
|
175 |
-
#generated_id{
|
176 |
min-height: 700px
|
177 |
-
}
|
178 |
-
|
179 |
-
margin-bottom: 12px;
|
180 |
-
text-align: center;
|
181 |
-
font-weight: 900;
|
182 |
}
|
183 |
"""
|
184 |
iface = gr.Blocks(css=css)
|
@@ -189,77 +124,72 @@ with iface:
|
|
189 |
<div style="text-align: center; max-width: 700px; margin: 0 auto;">
|
190 |
<div
|
191 |
style="
|
192 |
-
display: inline-flex;
|
193 |
-
align-items: center;
|
194 |
-
gap: 0.8rem;
|
195 |
-
font-size: 1.75rem;
|
196 |
"
|
197 |
>
|
198 |
<h1 style="font-weight: 900; margin-bottom: 7px; line-height: normal;">
|
199 |
AudioLDM 2: A General Framework for Audio, Music, and Speech Generation
|
200 |
</h1>
|
201 |
-
</div>
|
202 |
-
|
203 |
-
|
|
|
204 |
</p>
|
205 |
</div>
|
206 |
"""
|
207 |
)
|
208 |
gr.HTML(
|
209 |
"""
|
210 |
-
<p
|
211 |
-
|
212 |
-
|
213 |
-
<
|
|
|
214 |
"""
|
215 |
)
|
|
|
216 |
with gr.Group():
|
217 |
with gr.Box():
|
218 |
-
############# Input
|
219 |
textbox = gr.Textbox(
|
220 |
-
value="
|
221 |
max_lines=1,
|
222 |
-
label="Input
|
223 |
info="Your text is important for the audio quality. Please ensure it is descriptive by using more adjectives.",
|
224 |
elem_id="prompt-in",
|
225 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
|
227 |
with gr.Accordion("Click to modify detailed configurations", open=False):
|
228 |
seed = gr.Number(
|
229 |
-
value=
|
230 |
-
label="
|
|
|
231 |
)
|
232 |
-
|
233 |
-
# 10, 10, value=10, step=2.5, label="Duration (seconds)"
|
234 |
-
# )
|
235 |
guidance_scale = gr.Slider(
|
236 |
0,
|
237 |
-
6,
|
238 |
value=3.5,
|
239 |
step=0.5,
|
240 |
-
label="Guidance scale
|
|
|
241 |
)
|
242 |
n_candidates = gr.Slider(
|
243 |
1,
|
244 |
-
|
245 |
value=3,
|
246 |
step=1,
|
247 |
-
label="
|
|
|
248 |
)
|
249 |
-
# model_name = gr.Dropdown(
|
250 |
-
# ["audioldm-m-text-ft", "audioldm-s-text-ft", "audioldm-m-full","audioldm-s-full-v2", "audioldm-s-full", "audioldm-l-full"], value="audioldm-m-full", label="Choose the model to use. audioldm-m-text-ft and audioldm-s-text-ft are recommanded. -s- means small, -m- means medium and -l- means large",
|
251 |
-
# )
|
252 |
-
############# Output
|
253 |
-
# outputs=gr.Audio(label="Output", type="numpy")
|
254 |
-
outputs = gr.Video(label="Output", elem_id="output-video")
|
255 |
|
256 |
-
|
257 |
-
# # advanced_button = gr.Button("Advanced options", elem_id="advanced-btn")
|
258 |
-
# with gr.Group(elem_id="share-btn-container"):
|
259 |
-
# community_icon = gr.HTML(community_icon_html, visible=False)
|
260 |
-
# loading_icon = gr.HTML(loading_icon_html, visible=False)
|
261 |
-
# share_button = gr.Button("Share to community", elem_id="share-btn", visible=False)
|
262 |
-
# outputs=[gr.Audio(label="Output", type="numpy"), gr.Audio(label="Output", type="numpy")]
|
263 |
btn = gr.Button("Submit").style(full_width=True)
|
264 |
|
265 |
with gr.Group(elem_id="share-btn-container", visible=False):
|
@@ -267,11 +197,9 @@ with iface:
|
|
267 |
loading_icon = gr.HTML(loading_icon_html)
|
268 |
share_button = gr.Button("Share to community", elem_id="share-btn")
|
269 |
|
270 |
-
# btn.click(text2audio, inputs=[
|
271 |
-
# textbox, duration, guidance_scale, seed, n_candidates, model_name], outputs=[outputs])
|
272 |
btn.click(
|
273 |
text2audio,
|
274 |
-
inputs=[textbox, guidance_scale, seed, n_candidates],
|
275 |
outputs=[outputs],
|
276 |
)
|
277 |
|
@@ -279,79 +207,55 @@ with iface:
|
|
279 |
gr.HTML(
|
280 |
"""
|
281 |
<div class="footer" style="text-align: center; max-width: 700px; margin: 0 auto;">
|
282 |
-
<p>Follow the latest update of AudioLDM 2 on our<a href="https://github.
|
283 |
-
</p>
|
284 |
-
|
285 |
-
|
286 |
-
<br>
|
287 |
</div>
|
288 |
"""
|
289 |
)
|
290 |
gr.Examples(
|
291 |
[
|
292 |
-
[
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
],
|
299 |
-
[
|
300 |
-
"A cat is meowing for attention.",
|
301 |
-
3.5,
|
302 |
-
1234,
|
303 |
-
3,
|
304 |
-
default_checkpoint,
|
305 |
-
],
|
306 |
-
[
|
307 |
-
"Birds singing sweetly in a blooming garden.",
|
308 |
-
3.5,
|
309 |
-
1234,
|
310 |
-
3,
|
311 |
-
default_checkpoint,
|
312 |
-
],
|
313 |
-
[
|
314 |
-
"A modern synthesizer creating futuristic soundscapes.",
|
315 |
-
3.5,
|
316 |
-
1234,
|
317 |
-
3,
|
318 |
-
default_checkpoint,
|
319 |
-
],
|
320 |
-
[
|
321 |
-
"The vibrant beat of Brazilian samba drums.",
|
322 |
-
3.5,
|
323 |
-
1234,
|
324 |
-
3,
|
325 |
-
default_checkpoint,
|
326 |
-
],
|
327 |
],
|
328 |
fn=text2audio,
|
329 |
-
|
330 |
-
inputs=[textbox, guidance_scale, seed, n_candidates],
|
331 |
outputs=[outputs],
|
332 |
cache_examples=True,
|
333 |
)
|
334 |
gr.HTML(
|
335 |
"""
|
336 |
-
<div class="acknowledgements">
|
337 |
-
|
338 |
-
<p>1. Try
|
339 |
-
|
340 |
-
<p>
|
|
|
|
|
|
|
|
|
|
|
341 |
</div>
|
342 |
"""
|
343 |
)
|
344 |
-
|
345 |
with gr.Accordion("Additional information", open=False):
|
346 |
gr.HTML(
|
347 |
"""
|
348 |
<div class="acknowledgments">
|
349 |
-
<p> We build the model with data from <a href="http://research.google.com/audioset/">AudioSet</a>,
|
350 |
-
|
351 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
)
|
353 |
-
# <p>This demo is strictly for research demo purpose only. For commercial use please <a href="[email protected]">contact us</a>.</p>
|
354 |
|
355 |
-
iface.queue(max_size=
|
356 |
-
iface.launch(debug=True)
|
357 |
-
# iface.launch(debug=True, share=True)
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
import torch
|
3 |
+
from diffusers import AudioLDM2Pipeline
|
4 |
from share_btn import community_icon_html, loading_icon_html, share_js
|
5 |
|
|
|
6 |
|
7 |
+
# make Space compatible with CPU duplicates
|
8 |
+
if torch.cuda.is_available():
|
9 |
+
device = "cuda"
|
10 |
+
torch_dtype = torch.float16
|
11 |
+
else:
|
12 |
+
device = "cpu"
|
13 |
+
torch_dtype = torch.float32
|
14 |
|
15 |
+
# load the diffusers pipeline
|
16 |
+
repo_id = "cvssp/audioldm2"
|
17 |
+
pipe = AudioLDM2Pipeline.from_pretrained(repo_id, torch_dtype=torch_dtype).to(device)
|
18 |
+
pipe.unet = torch.compile(pipe.unet)
|
19 |
|
20 |
+
# set the generator for reproducibility
|
21 |
+
generator = torch.Generator(device)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
|
|
|
|
|
|
|
|
23 |
|
24 |
+
def text2audio(text, negative_prompt, duration, guidance_scale, random_seed, n_candidates):
|
25 |
+
if text is None:
|
26 |
+
raise gr.Error("Please provide a text input.")
|
27 |
+
|
28 |
+
waveforms = pipe(
|
29 |
+
text,
|
30 |
+
audio_length_in_s=duration,
|
31 |
guidance_scale=guidance_scale,
|
32 |
+
num_inference_steps=100,
|
33 |
+
negative_prompt=negative_prompt,
|
34 |
+
num_waveforms_per_prompt=n_candidates if n_candidates else 1,
|
35 |
+
generator=generator.manual_seed(int(random_seed)),
|
36 |
+
)["audios"]
|
37 |
+
|
38 |
+
return gr.make_waveform((16000, waveforms[0]), bg_image="bg.png")
|
39 |
+
|
|
|
40 |
|
41 |
css = """
|
42 |
a {
|
43 |
+
color: inherit; text-decoration: underline;
|
44 |
+
} .gradio-container {
|
|
|
|
|
45 |
font-family: 'IBM Plex Sans', sans-serif;
|
46 |
+
} .gr-button {
|
47 |
+
color: white; border-color: #000000; background: #000000;
|
48 |
+
} input[type='range'] {
|
|
|
|
|
|
|
|
|
|
|
49 |
accent-color: #000000;
|
50 |
+
} .dark input[type='range'] {
|
|
|
51 |
accent-color: #dfdfdf;
|
52 |
+
} .container {
|
53 |
+
max-width: 730px; margin: auto; padding-top: 1.5rem;
|
54 |
+
} #gallery {
|
55 |
+
min-height: 22rem; margin-bottom: 15px; margin-left: auto; margin-right: auto; border-bottom-right-radius:
|
56 |
+
.5rem !important; border-bottom-left-radius: .5rem !important;
|
57 |
+
} #gallery>div>.h-full {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
min-height: 20rem;
|
59 |
+
} .details:hover {
|
|
|
60 |
text-decoration: underline;
|
61 |
+
} .gr-button {
|
|
|
62 |
white-space: nowrap;
|
63 |
+
} .gr-button:focus {
|
64 |
+
border-color: rgb(147 197 253 / var(--tw-border-opacity)); outline: none; box-shadow:
|
65 |
+
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); --tw-border-opacity: 1;
|
66 |
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width)
|
67 |
+
var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px
|
68 |
+
var(--tw-ring-offset-width)) var(--tw-ring-color); --tw-ring-color: rgb(191 219 254 /
|
69 |
+
var(--tw-ring-opacity)); --tw-ring-opacity: .5;
|
70 |
+
} #advanced-btn {
|
71 |
+
font-size: .7rem !important; line-height: 19px; margin-top: 12px; margin-bottom: 12px; padding: 2px 8px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
border-radius: 14px !important;
|
73 |
+
} #advanced-options {
|
|
|
74 |
margin-bottom: 20px;
|
75 |
+
} .footer {
|
76 |
+
margin-bottom: 45px; margin-top: 35px; text-align: center; border-bottom: 1px solid #e5e5e5;
|
77 |
+
} .footer>p {
|
78 |
+
font-size: .8rem; display: inline-block; padding: 0 10px; transform: translateY(10px); background: white;
|
79 |
+
} .dark .footer {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
border-color: #303030;
|
81 |
+
} .dark .footer>p {
|
|
|
82 |
background: #0b0f19;
|
83 |
+
} .acknowledgments h4{
|
84 |
+
margin: 1.25em 0 .25em 0; font-weight: bold; font-size: 115%;
|
85 |
+
} #container-advanced-btns{
|
86 |
+
display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
|
87 |
+
} .animate-spin {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
animation: spin 1s linear infinite;
|
89 |
+
} @keyframes spin {
|
|
|
90 |
from {
|
91 |
transform: rotate(0deg);
|
92 |
+
} to {
|
|
|
93 |
transform: rotate(360deg);
|
94 |
}
|
95 |
+
} #share-btn-container {
|
96 |
+
display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color:
|
97 |
+
#000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
|
98 |
+
margin-top: 10px; margin-left: auto;
|
99 |
+
} #share-btn {
|
100 |
+
all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif;
|
101 |
+
margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem
|
102 |
+
!important;right:0;
|
103 |
+
} #share-btn * {
|
|
|
104 |
all: unset;
|
105 |
+
} #share-btn-container div:nth-child(-n+2){
|
106 |
+
width: auto !important; min-height: 0px !important;
|
107 |
+
} #share-btn-container .wrap {
|
|
|
|
|
|
|
108 |
display: none !important;
|
109 |
+
} .gr-form{
|
|
|
110 |
flex: 1 1 50%; border-top-right-radius: 0; border-bottom-right-radius: 0;
|
111 |
+
} #prompt-container{
|
|
|
112 |
gap: 0;
|
113 |
+
} #generated_id{
|
|
|
114 |
min-height: 700px
|
115 |
+
} #setting_id{
|
116 |
+
margin-bottom: 12px; text-align: center; font-weight: 900;
|
|
|
|
|
|
|
117 |
}
|
118 |
"""
|
119 |
iface = gr.Blocks(css=css)
|
|
|
124 |
<div style="text-align: center; max-width: 700px; margin: 0 auto;">
|
125 |
<div
|
126 |
style="
|
127 |
+
display: inline-flex; align-items: center; gap: 0.8rem; font-size: 1.75rem;
|
|
|
|
|
|
|
128 |
"
|
129 |
>
|
130 |
<h1 style="font-weight: 900; margin-bottom: 7px; line-height: normal;">
|
131 |
AudioLDM 2: A General Framework for Audio, Music, and Speech Generation
|
132 |
</h1>
|
133 |
+
</div> <p style="margin-bottom: 10px; font-size: 94%">
|
134 |
+
<a href="https://arxiv.org/abs/2308.05734">[Paper]</a> <a href="https://audioldm.github.io/audioldm2">[Project
|
135 |
+
page]</a> <a href="https://huggingface.co/docs/diffusers/main/en/api/pipelines/audioldm2">[🧨
|
136 |
+
Diffusers]</a>
|
137 |
</p>
|
138 |
</div>
|
139 |
"""
|
140 |
)
|
141 |
gr.HTML(
|
142 |
"""
|
143 |
+
<p>This is the demo for AudioLDM 2, powered by 🧨 Diffusers. Demo uses the checkpoint <a
|
144 |
+
href="https://huggingface.co/cvssp/audioldm2"> AudioLDM 2 base </a>. For faster inference without waiting in
|
145 |
+
queue, you may duplicate the space and upgrade to a GPU in the settings. <br/> <a
|
146 |
+
href="https://huggingface.co/spaces/haoheliu/audioldm2-text2audio-text2music?duplicate=true"> <img
|
147 |
+
style="margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a> <p/>
|
148 |
"""
|
149 |
)
|
150 |
+
|
151 |
with gr.Group():
|
152 |
with gr.Box():
|
|
|
153 |
textbox = gr.Textbox(
|
154 |
+
value="The vibrant beat of Brazilian samba drums.",
|
155 |
max_lines=1,
|
156 |
+
label="Input text",
|
157 |
info="Your text is important for the audio quality. Please ensure it is descriptive by using more adjectives.",
|
158 |
elem_id="prompt-in",
|
159 |
)
|
160 |
+
negative_textbox = gr.Textbox(
|
161 |
+
value="Low quality.",
|
162 |
+
max_lines=1,
|
163 |
+
label="Negative prompt",
|
164 |
+
info="Enter a negative prompt not to guide the audio generation. Selecting appropriate negative prompts can improve the audio quality significantly.",
|
165 |
+
elem_id="prompt-in",
|
166 |
+
)
|
167 |
|
168 |
with gr.Accordion("Click to modify detailed configurations", open=False):
|
169 |
seed = gr.Number(
|
170 |
+
value=45,
|
171 |
+
label="Seed",
|
172 |
+
info="Change this value (any integer number) will lead to a different generation result.",
|
173 |
)
|
174 |
+
duration = gr.Slider(5, 15, value=10, step=2.5, label="Duration (seconds)")
|
|
|
|
|
175 |
guidance_scale = gr.Slider(
|
176 |
0,
|
177 |
+
6.5,
|
178 |
value=3.5,
|
179 |
step=0.5,
|
180 |
+
label="Guidance scale",
|
181 |
+
info="Larger => better quality and relevancy to text; Smaller => better diversity",
|
182 |
)
|
183 |
n_candidates = gr.Slider(
|
184 |
1,
|
185 |
+
5,
|
186 |
value=3,
|
187 |
step=1,
|
188 |
+
label="Number waveforms to generate",
|
189 |
+
info="Automatic quality control. This number control the number of candidates (e.g., generate three audios and choose the best to show you). A larger value usually lead to better quality with heavier computation",
|
190 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
|
192 |
+
outputs = gr.Video(label="Output", elem_id="output-video")
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
btn = gr.Button("Submit").style(full_width=True)
|
194 |
|
195 |
with gr.Group(elem_id="share-btn-container", visible=False):
|
|
|
197 |
loading_icon = gr.HTML(loading_icon_html)
|
198 |
share_button = gr.Button("Share to community", elem_id="share-btn")
|
199 |
|
|
|
|
|
200 |
btn.click(
|
201 |
text2audio,
|
202 |
+
inputs=[textbox, negative_textbox, duration, guidance_scale, seed, n_candidates],
|
203 |
outputs=[outputs],
|
204 |
)
|
205 |
|
|
|
207 |
gr.HTML(
|
208 |
"""
|
209 |
<div class="footer" style="text-align: center; max-width: 700px; margin: 0 auto;">
|
210 |
+
<p>Follow the latest update of AudioLDM 2 on our<a href="https://audioldm.github.io/audioldm2"
|
211 |
+
style="text-decoration: underline;" target="_blank"> Github repo</a> </p> <br> <p>Model by <a
|
212 |
+
href="https://twitter.com/LiuHaohe" style="text-decoration: underline;" target="_blank">Haohe
|
213 |
+
Liu</a>. Code and demo by 🤗 Hugging Face.</p> <br>
|
|
|
214 |
</div>
|
215 |
"""
|
216 |
)
|
217 |
gr.Examples(
|
218 |
[
|
219 |
+
["A hammer is hitting a wooden surface.", "Low quality.", 10, 3.5, 45, 3],
|
220 |
+
["A cat is meowing for attention.", "Low quality.", 10, 3.5, 45, 3],
|
221 |
+
["An excited crowd cheering at a sports game.", "Low quality.", 10, 3.5, 45, 3],
|
222 |
+
["Birds singing sweetly in a blooming garden.", "Low quality.", 10, 3.5, 45, 3],
|
223 |
+
["A modern synthesizer creating futuristic soundscapes.", "Low quality.", 10, 3.5, 45, 3],
|
224 |
+
["The vibrant beat of Brazilian samba drums.", "Low quality.", 10, 3.5, 45, 3],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
],
|
226 |
fn=text2audio,
|
227 |
+
inputs=[textbox, negative_textbox, duration, guidance_scale, seed, n_candidates],
|
|
|
228 |
outputs=[outputs],
|
229 |
cache_examples=True,
|
230 |
)
|
231 |
gr.HTML(
|
232 |
"""
|
233 |
+
<div class="acknowledgements"> <p>Essential Tricks for Enhancing the Quality of Your Generated
|
234 |
+
Audio</p>
|
235 |
+
<p>1. Try using more adjectives to describe your sound. For example: "A man is speaking
|
236 |
+
clearly and slowly in a large room" is better than "A man is speaking".</p>
|
237 |
+
<p>2. Try using different random seeds, which can significantly affect the quality of the generated
|
238 |
+
output.</p>
|
239 |
+
<p>3. It's better to use general terms like 'man' or 'woman' instead of specific names for individuals or
|
240 |
+
abstract objects that humans may not be familiar with.</p>
|
241 |
+
<p>4. Using a negative prompt to not guide the diffusion process can improve the
|
242 |
+
audio quality significantly. Try using negative prompts like 'low quality'.</p>
|
243 |
</div>
|
244 |
"""
|
245 |
)
|
|
|
246 |
with gr.Accordion("Additional information", open=False):
|
247 |
gr.HTML(
|
248 |
"""
|
249 |
<div class="acknowledgments">
|
250 |
+
<p> We build the model with data from <a href="http://research.google.com/audioset/">AudioSet</a>,
|
251 |
+
<a href="https://freesound.org/">Freesound</a> and <a
|
252 |
+
href="https://sound-effects.bbcrewind.co.uk/">BBC Sound Effect library</a>. We share this demo
|
253 |
+
based on the <a
|
254 |
+
href="https://assets.publishing.service.gov.uk/government/uploads/system/uploads/attachment_data/file/375954/Research.pdf">UK
|
255 |
+
copyright exception</a> of data for academic research.
|
256 |
+
</p>
|
257 |
+
</div>
|
258 |
+
"""
|
259 |
)
|
|
|
260 |
|
261 |
+
iface.queue(max_size=10).launch(share=True)
|
|
|
|
requirements.txt
CHANGED
@@ -1,9 +1,4 @@
|
|
|
|
|
|
|
|
1 |
git+https://github.com/huggingface/diffusers.git
|
2 |
-
transformers==4.30.2
|
3 |
-
--extra-index-url https://download.pytorch.org/whl/cu113
|
4 |
-
torch >= 2.0
|
5 |
-
gradio_client==0.2.7
|
6 |
-
huggingface_hub
|
7 |
-
pydantic<2
|
8 |
-
timm
|
9 |
-
audioldm2==0.0.3
|
|
|
1 |
+
torch
|
2 |
+
librosa
|
3 |
+
transformers
|
4 |
git+https://github.com/huggingface/diffusers.git
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|