anegi commited on
Commit
3b4b3e2
·
1 Parent(s): 62dd354

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -8
app.py CHANGED
@@ -13,19 +13,17 @@ Vikas: Exactly!! Xavi has changed the way Barcelona play. The good days are comi
13
 
14
  io1 = gr.Interface.load("huggingface/anegi/t5smallmodel",
15
  title='Dialogue Summarization using t5-small model',
16
- inputs = [
17
- gr.inputs.Textbox(lines = 7, label = 'Text', placeholder = 'Enter your text here: ')
18
- ],
19
  description='This is a self-trained model',
20
- examples = example,
21
- theme = 'dark-peach'
22
  )
23
 
24
  io2 = gr.Interface.load("huggingface/philschmid/bart-large-cnn-samsum",
25
  title='Dialogue Summarization using bart large cnn',
26
  description='This is a pre trained model ',
27
- examples = example,
28
- theme = 'dark-peach'
29
  )
30
 
31
- Parallel(io1,io2).launch()
 
 
 
 
 
 
13
 
14
  io1 = gr.Interface.load("huggingface/anegi/t5smallmodel",
15
  title='Dialogue Summarization using t5-small model',
 
 
 
16
  description='This is a self-trained model',
 
 
17
  )
18
 
19
  io2 = gr.Interface.load("huggingface/philschmid/bart-large-cnn-samsum",
20
  title='Dialogue Summarization using bart large cnn',
21
  description='This is a pre trained model ',
 
 
22
  )
23
 
24
+ io3 = gr.Interface.load(description = description,
25
+ examples = example,
26
+ theme='dark-peach'
27
+ )
28
+
29
+ Parallel(io1,io2,io3).launch()