Spaces:
Runtime error
Runtime error
File size: 366 Bytes
ad7f067 13ece46 f2ef06d 7acb61a 2e4a367 ad7f067 |
1 2 3 4 5 6 7 8 |
import gradio as gr
from gradio.mix import Parallel
distilbart_model = "huggingface/sshleifer/distilbart-cnn-12-6"
model_name = "huggingface/sshleifer/distill-pegasus-xsum-16-4"
base_model = gr.Interface.load(distilbart_model)
my_model = gr.Interface.load(model_name, title = "Finetuned model output", inputs = "text", outputs="text")
Parallel(base_model, my_model) |