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() |