update
Browse files
app.py
CHANGED
@@ -193,24 +193,22 @@ variant = gr.Dropdown(label="Model Variant", choices=list(all_model_cfg.keys()),
|
|
193 |
|
194 |
|
195 |
description_text = """
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
<
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
</a>
|
213 |
-
</div>
|
214 |
"""
|
215 |
|
216 |
|
@@ -241,8 +239,8 @@ gr_interface = gr.Interface(
|
|
241 |
|
242 |
|
243 |
if __name__ == "__main__":
|
244 |
-
ensure_models_downloaded()
|
245 |
-
load_model_cache()
|
246 |
gr_interface.queue(15).launch()
|
247 |
|
248 |
# theme = gr.themes.Soft(
|
|
|
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 |
|
|
|
239 |
|
240 |
|
241 |
if __name__ == "__main__":
|
242 |
+
# ensure_models_downloaded()
|
243 |
+
# load_model_cache()
|
244 |
gr_interface.queue(15).launch()
|
245 |
|
246 |
# theme = gr.themes.Soft(
|