File size: 340 Bytes
fba2ed9
 
 
 
 
 
c896924
fba2ed9
 
1
2
3
4
5
6
7
8
9
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=[["How can a clam cram in a clean cream can?"]]
)
interface.launch()