Spaces:
Runtime error
Runtime error
File size: 839 Bytes
0dd4c15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import gradio as gr
fastspeech = gr.Interface.load("huggingface/facebook/fastspeech2-en-ljspeech")
clip = gr.Interface.load("spaces/DrishtiSharma/Text-to-Image-search-using-CLIP")
def text2speech(text):
return fastspeech(text)
def text2image(text):
image = clip(text)[0]
return gr.processing_utils.decode_base64_to_image(image)
block = gr.Blocks()
with block:
text = gr.inputs.Textbox(placeholder="Try writing something..")
with gr.Column():
with gr.Row():
get_audio = gr.Button("generate audio")
get_image = gr.Button("generate image")
with gr.Row():
speech = gr.outputs.Audio()
image = gr.outputs.Image()
get_audio.click(text2speech, inputs=text, outputs=speech)
get_image.click(text2image, inputs=text, outputs=image)
block.launch() |