Spaces:
Runtime error
Runtime error
File size: 418 Bytes
cb5c2b3 786aa6e cb5c2b3 c49136b 7d6ebdf 3b8643a 7d6ebdf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import gradio as gr
from gradio import inputs
from gradio.mix import Parallel
description = 'Dialogue summarization models'
title = 'Comparing different dialogue summarization models'
example = 'anegi/demo-app1/examplefile'
interface = gr.Interface.load("huggingface/anegi/t5smallmodel",
description=description,
examples=example,
theme = 'dark-peach'
)
interface.launch()
|