denoising / app.py
khalida1wwin
Add application file
55953fe
raw
history blame
433 Bytes
import gradio as gr
gr.Interface.load("huggingface/facebook/fastspeech2-en-ljspeech",
description="TTS using FastSpeech2",
outputs = 'audio',
title="Text to Speech (TTS)",
examples=[["The quick brown fox jumps over the lazy dog."]],
article = "Author: <a href=\"https://huggingface.co/rowel\">Rowel Atienza</a>",
).launch()