shamikbose89's picture
Update app.py
13ece46
raw
history blame
369 Bytes
import gradio as gr
from gradio.mix import Parallel
distilbart_model = "huggingface/sshleifer/distilbart-cnn-12-6"
model_name = "huggingface/shamikbose89/mt5-small-finetuned-arxiv-cs-full"
base_model = gr.Interface.load(distilbart_model)
my_model = gr.Interface(model_name, title = "Finetuned model output", inputs = text, outputs=text)
Parallel(base_model, my_model)