Spaces:
Runtime error
Runtime error
File size: 464 Bytes
f3d27a8 f9a43d0 f3d27a8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
io1 = gr.Interface.load('huggingface/sshleifer/distilbart-cnn-12-6')
io2 = gr.Interface.load("huggingface/facebook/bart-large-cnn")
io3 = gr.Interface.load("huggingface/google/pegasus-xsum")
io4 = gr.Interface.load("huggingface/sshleifer/distilbart-cnn-6-6")
iface = Parallel(io1, io2, io3, io4,
theme='huggingface',
inputs = gr.inputs.Textbox(lines = 10, label="Text"))
iface.launch() |