anegi commited on
Commit
62dd354
·
1 Parent(s): 6b4410c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -17,13 +17,15 @@ io1 = gr.Interface.load("huggingface/anegi/t5smallmodel",
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
  )
22
 
23
  io2 = gr.Interface.load("huggingface/philschmid/bart-large-cnn-samsum",
24
  title='Dialogue Summarization using bart large cnn',
25
- description='This is a pre trained model '
26
-
 
27
  )
28
 
29
  Parallel(io1,io2).launch()
 
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()