update
Browse files
app.py
CHANGED
@@ -192,26 +192,45 @@ seed = gr.Slider(minimum=1, maximum=100, value=42, step=1, label="Seed", interac
|
|
192 |
variant = gr.Dropdown(label="Model Variant", choices=list(all_model_cfg.keys()), value='meanaudio_s_full', interactive=True)
|
193 |
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
description_text = """
|
196 |
**MeanAudio** is a novel text-to-audio generator that uses **MeanFlow** to synthesize realistic and faithful audio in few sampling steps. It achieves state-of-the-art performance in single-step audio generation and delivers strong performance in multi-step audio generation.
|
197 |
-
|
198 |
-
<
|
199 |
-
<
|
200 |
-
|
201 |
-
|
202 |
-
<
|
203 |
-
|
204 |
-
|
205 |
-
<
|
206 |
-
|
207 |
-
|
208 |
-
<
|
209 |
-
|
210 |
-
|
211 |
-
|
|
|
|
|
212 |
"""
|
213 |
-
|
214 |
-
|
215 |
gr_interface = gr.Interface(
|
216 |
fn=generate_audio_gradio,
|
217 |
inputs=[input_text, duration, cfg_strength, denoising_steps, variant, seed],
|
|
|
192 |
variant = gr.Dropdown(label="Model Variant", choices=list(all_model_cfg.keys()), value='meanaudio_s_full', interactive=True)
|
193 |
|
194 |
|
195 |
+
# description_text = """
|
196 |
+
# **MeanAudio** is a novel text-to-audio generator that uses **MeanFlow** to synthesize realistic and faithful audio in few sampling steps. It achieves state-of-the-art performance in single-step audio generation and delivers strong performance in multi-step audio generation.
|
197 |
+
|
198 |
+
# <p align="center">
|
199 |
+
# <a href="https://huggingface.co/AndreasXi/MeanAudio">
|
200 |
+
# <img src="https://img.shields.io/badge/%F0%9F%A4%97%20Model-HuggingFace-violet" alt="HuggingFace Model">
|
201 |
+
# </a>
|
202 |
+
# <a href="https://huggingface.co/spaces/chenxie95/MeanAudio">
|
203 |
+
# <img src="https://img.shields.io/badge/%F0%9F%9A%80%20Space-HuggingFace-8A2BE2" alt="HuggingFace Space">
|
204 |
+
# </a>
|
205 |
+
# <a href="https://meanaudio.github.io/">
|
206 |
+
# <img src="https://img.shields.io/badge/%F0%9F%93%84%20Project-Page-brightred" alt="Project Page">
|
207 |
+
# </a>
|
208 |
+
# <a href="https://github.com/xiquan-li/MeanAudio">
|
209 |
+
# <img src="https://img.shields.io/badge/%F0%9F%92%BB%20Code-GitHub-black" alt="GitHub">
|
210 |
+
# </a>
|
211 |
+
# </p>
|
212 |
+
# """
|
213 |
+
|
214 |
description_text = """
|
215 |
**MeanAudio** is a novel text-to-audio generator that uses **MeanFlow** to synthesize realistic and faithful audio in few sampling steps. It achieves state-of-the-art performance in single-step audio generation and delivers strong performance in multi-step audio generation.
|
216 |
+
<div style="display: flex; gap: 10px; align-items: center;">
|
217 |
+
<a href="https://arxiv.org/abs/2508.06098">
|
218 |
+
<img src="https://img.shields.io/badge/Read_the_Paper-blue?link=https%3A%2F%2Fopenreview.net%2Fattachment%3Fid%3DtpJPlFTyxd%26name%3Dpdf" alt="arXiv">
|
219 |
+
</a>
|
220 |
+
<a href="https://github.com/xiquan-li/MeanAudio">
|
221 |
+
<img src="https://img.shields.io/badge/%F0%9F%92%BB%20Code-GitHub-black" alt="Static Badge">
|
222 |
+
</a>
|
223 |
+
<a href="https://meanaudio.github.io/">
|
224 |
+
<img src="https://img.shields.io/badge/%F0%9F%93%84%20Project-Page-brightred" alt="Static Badge">
|
225 |
+
</a>
|
226 |
+
<a href="https://huggingface.co/AndreasXi/MeanAudio">
|
227 |
+
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20Model-HuggingFace-violet" alt="HuggingFace Model">
|
228 |
+
</a>
|
229 |
+
<a href="https://huggingface.co/spaces/chenxie95/MeanAudio">
|
230 |
+
<img src="https://img.shields.io/badge/%F0%9F%9A%80%20Space-HuggingFace-8A2BE2" alt="HuggingFace Space">
|
231 |
+
</a>
|
232 |
+
</div>
|
233 |
"""
|
|
|
|
|
234 |
gr_interface = gr.Interface(
|
235 |
fn=generate_audio_gradio,
|
236 |
inputs=[input_text, duration, cfg_strength, denoising_steps, variant, seed],
|