|
import os |
|
os.system("pip install gradio==2.4.6") |
|
import gradio as gr |
|
|
|
title = "fastspeech2 hifigan" |
|
description = "Gradio demo for fastspeech2 Hifi-GAN. To use it, simply upload your text, or click one of the examples to load them. Read more at the links below." |
|
article = "<p style='text-align: center'><a href='https://huggingface.co/espnet/kan-bayashi_ljspeech_joint_finetune_conformer_fastspeech2_hifigan'>Huggingface Model</a></p>" |
|
|
|
gr.Interface.load("huggingface/espnet/kan-bayashi_ljspeech_joint_finetune_conformer_fastspeech2_hifigan",title=title, |
|
description=description, |
|
article=article, |
|
examples=[ |
|
["The Hobbit is a film series consisting of three high fantasy adventure films directed by Peter Jackson"] |
|
]).launch() |