anegi commited on
Commit
038d520
·
1 Parent(s): f8da9e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -11,17 +11,13 @@ interface1 = gr.Interface.load("huggingface/philschmid/bart-large-cnn-samsum",
11
  theme = 'dark-peach'
12
  )
13
 
14
- interface2 = gr.Interface.load("huggingface/lidiya/bart-large-xsum-samsum",
15
- description=description,
16
- theme = 'dark-peach'
17
- )
18
 
19
- interface3 = gr.Interface.load("huggingface/anegi/t5smallmodel",
20
  description=description,
21
  theme = 'dark-peach'
22
  )
23
 
24
- Parallel(interface1,interface2,interface3).launch()
25
 
26
 
27
 
 
11
  theme = 'dark-peach'
12
  )
13
 
 
 
 
 
14
 
15
+ interface2 = gr.Interface.load("huggingface/anegi/t5smallmodel",
16
  description=description,
17
  theme = 'dark-peach'
18
  )
19
 
20
+ Parallel(interface1,interface2).launch()
21
 
22
 
23