Yah216 commited on
Commit
6b3adca
1 Parent(s): 1956739

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,5 +1,5 @@
1
  import gradio as gr
2
- from gradio.mix import Series, Parallel
3
 
4
  description = "Poem meter detector"
5
  title = "Identify the meter of the poem you are reading or writing with this performant classifier"
@@ -23,6 +23,6 @@ interface3 = gr.Interface.load(
23
 
24
  )
25
 
26
- Parallel(interface1, interface2, interface3, examples = examples).launch()
27
 
28
 
 
1
  import gradio as gr
2
+ from gradio.mix import Parallel
3
 
4
  description = "Poem meter detector"
5
  title = "Identify the meter of the poem you are reading or writing with this performant classifier"
 
23
 
24
  )
25
 
26
+ Parallel(interface1, interface2, interface3).launch()
27
 
28