myalexa / app.py
almncarlo's picture
Update app.py
2f7936e verified
raw
history blame
347 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline(task="text-to-apeech",
model="espnet/kan-bayashi_ljspeech_vits")
gr.Interface.from_pipeline(pipe,
title="TTS",
description="Using pipeline with VITS TTS",
).launch(inbrowser=True)