File size: 751 Bytes
49cd45e
 
4fdb9d2
 
ab9a342
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()