Yah216 commited on
Commit
70719fd
โ€ข
1 Parent(s): 9f6b402

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -1,12 +1,19 @@
1
  import gradio as gr
2
 
3
  description = "Poem meter detector"
4
- title = "Identify the meter of the poem you are reading or writing with this performanr classifier"
5
  examples = [["ุณูŽู„ูˆ ู‚ูŽู„ุจูŠ ุบูŽุฏุงุฉูŽ ุณูŽู„ุง ูˆูŽุซุงุจุง ู„ูŽุนูŽู„ูŽู‘ ุนูŽู„ู‰ ุงู„ุฌูŽู…ุงู„ู ู„ูŽู‡ู ุนูุชุงุจุง"]]
6
 
7
- interface = gr.Interface.load("huggingface/Yah216/Arabic_poem_meter_3",
8
  description=description,
9
  examples=examples
10
  )
11
 
12
- interface.launch(share=True)
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
  description = "Poem meter detector"
4
+ title = "Identify the meter of the poem you are reading or writing with this performant classifier"
5
  examples = [["ุณูŽู„ูˆ ู‚ูŽู„ุจูŠ ุบูŽุฏุงุฉูŽ ุณูŽู„ุง ูˆูŽุซุงุจุง ู„ูŽุนูŽู„ูŽู‘ ุนูŽู„ู‰ ุงู„ุฌูŽู…ุงู„ู ู„ูŽู‡ู ุนูุชุงุจุง"]]
6
 
7
+ interface1 = gr.Interface.load("huggingface/Yah216/Arabic_poem_meter_3",
8
  description=description,
9
  examples=examples
10
  )
11
 
12
+
13
+ interface1.launch()
14
+
15
+ interface2 = gr.Interface.load("Yah216/Poem_Qafiyah_Detection",
16
+ description=description,
17
+ examples=examples
18
+ )
19
+ interface2.launch()