File size: 1,425 Bytes
cb5c2b3
 
786aa6e
cb5c2b3
c49136b
 
 
 
 
 
 
 
786aa6e
cf34164
7e9b4e9
0613951
 
 
c49136b
 
0613951
 
 
7e9b4e9
 
7cd28b5
0613951
6d96d62
786aa6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import gradio as gr
from gradio import inputs
from gradio.mix import Parallel

description = 'Dialogue summarization models'
title = 'Comparing different dialogue summarization models'
example = [['''Aakash: Do you watched last night match?
Vikas: No, I was busy. What happended?
Aakash: Barcelona won their game against Sevilla 1-0. Pedri scored an sensational goal.
Vikas: Oh really!!! I have to watch the highlights at home.
Aakash: Yes, I am so excited for the new upcoming season. Xavi really doing wonders.
Vikas: Exactly!! Xavi has changed the way Barcelona play. The good days are coming back. ''']]

io1 = gr.Interface.load("huggingface/anegi/t5smallmodel",                        
                        title='Dialogue Summarization using t5-small model',
                        inputs = [
                            gr.inputs.Textbox(lines = 7, label = 'Text', placeholder = 'Enter your text here: ')  
                        ],
                        description='This is a self-trained model',
                        example = example
                        )
                        
io2 = gr.Interface.load("huggingface/philschmid/bart-large-cnn-samsum",
                        title='Dialogue Summarization using bart large cnn',
                        description='This is a pre trained model '
                         
                        )
                        
Parallel(io1,io2).launch()