scp4950's picture
app.py
fba2ed9
raw
history blame
313 Bytes
import gradio as gr
description = "fastspeech2-en-ljspeech demo."
title = "Facebook's Text To Speech Model"
interface = gr.Interface.load("huggingface/facebook/fastspeech2-en-ljspeech",
description=description,
title = title,
examples=[["american robin"]]
)
interface.launch()