Spaces:
Runtime error
Runtime error
Commit
·
2e4a367
1
Parent(s):
e219306
Update app.py
Browse files
app.py
CHANGED
@@ -5,5 +5,5 @@ distilbart_model = "huggingface/sshleifer/distilbart-cnn-12-6"
|
|
5 |
model_name = "huggingface/shamikbose89/mt5-small-finetuned-arxiv-cs-full"
|
6 |
|
7 |
base_model = gr.Interface.load(distilbart_model)
|
8 |
-
my_model = gr.Interface(model_name, title = "Finetuned model output", inputs = "text", outputs="text")
|
9 |
Parallel(base_model, my_model)
|
|
|
5 |
model_name = "huggingface/shamikbose89/mt5-small-finetuned-arxiv-cs-full"
|
6 |
|
7 |
base_model = gr.Interface.load(distilbart_model)
|
8 |
+
my_model = gr.Interface.load(model_name, title = "Finetuned model output", inputs = "text", outputs="text")
|
9 |
Parallel(base_model, my_model)
|