Yah216 commited on
Commit
c9f72b1
โ€ข
1 Parent(s): 14fe98f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
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()