Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import spaces
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
import torch
|
| 4 |
import safetensors
|
|
@@ -364,7 +365,17 @@ iface = gr.Interface(
|
|
| 364 |
],
|
| 365 |
outputs=gr.Audio(label="Generated Audio"),
|
| 366 |
title="MaskGCT TTS Demo",
|
| 367 |
-
description="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 368 |
)
|
| 369 |
|
| 370 |
# Launch the interface
|
|
|
|
| 1 |
import spaces
|
| 2 |
+
import accelerate
|
| 3 |
import gradio as gr
|
| 4 |
import torch
|
| 5 |
import safetensors
|
|
|
|
| 365 |
],
|
| 366 |
outputs=gr.Audio(label="Generated Audio"),
|
| 367 |
title="MaskGCT TTS Demo",
|
| 368 |
+
description="""
|
| 369 |
+
## MaskGCT: Zero-Shot Text-to-Speech with Masked Generative Codec Transformer
|
| 370 |
+
|
| 371 |
+
[](https://arxiv.org/abs/2409.00750)
|
| 372 |
+
|
| 373 |
+
[](https://huggingface.co/amphion/maskgct)
|
| 374 |
+
|
| 375 |
+
[](https://huggingface.co/spaces/amphion/maskgct)
|
| 376 |
+
|
| 377 |
+
[](../../../models/tts/maskgct/README.md)
|
| 378 |
+
"""
|
| 379 |
)
|
| 380 |
|
| 381 |
# Launch the interface
|