File size: 347 Bytes
def81e4 78bc825 def81e4 2f7936e 78bc825 2f7936e 78bc825 |
1 2 3 4 5 6 7 8 9 |
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) |