Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,24 +11,25 @@ examples = [["سَلو قَلبي غَداةَ سَلا وَثابا لَعَل
|
|
11 |
|
12 |
|
13 |
meter = gr.Interface.load("huggingface/Yah216/Arabic_poem_meter_3",
|
14 |
-
description="التعرف
|
15 |
-
examples=examples
|
|
|
16 |
|
17 |
)
|
18 |
qafiyah = gr.Interface.load("huggingface/Yah216/Poem_Qafiyah_Detection",
|
19 |
-
|
20 |
-
examples=examples
|
|
|
|
|
21 |
|
22 |
)
|
23 |
subject = gr.Interface.load(
|
24 |
"huggingface/zenkri/autotrain-Arabic_Poetry_by_Subject-920730230",
|
25 |
-
|
26 |
-
examples=examples
|
|
|
|
|
27 |
|
28 |
)
|
29 |
demo = gr.TabbedInterface([meter, qafiyah, subject], ["التعرف على البحر","التعرف على القافية","التعرف على الموضوع"])
|
30 |
|
31 |
-
demo.launch()
|
32 |
-
#Parallel(interface1, interface2, interface3, examples = examples).launch()
|
33 |
-
|
34 |
-
|
|
|
11 |
|
12 |
|
13 |
meter = gr.Interface.load("huggingface/Yah216/Arabic_poem_meter_3",
|
14 |
+
description="أدخل البيت المرغوب في التعرف عليه",
|
15 |
+
examples=examples, title = "التعرف على البحر",
|
16 |
+
inputs = gr.inputs.Textbox(lines = 3, label = "البيت")
|
17 |
|
18 |
)
|
19 |
qafiyah = gr.Interface.load("huggingface/Yah216/Poem_Qafiyah_Detection",
|
20 |
+
title ="التعرف على القافية",
|
21 |
+
examples=examples,
|
22 |
+
description="أدخل البيت المرغوب في التعرف عليه",
|
23 |
+
inputs = gr.inputs.Textbox(lines = 3, label = "البيت")
|
24 |
|
25 |
)
|
26 |
subject = gr.Interface.load(
|
27 |
"huggingface/zenkri/autotrain-Arabic_Poetry_by_Subject-920730230",
|
28 |
+
title="التعرف على الموضوع", alias = "التعرف على الموضوع",
|
29 |
+
examples=examples,
|
30 |
+
description="أدخل البيت المرغوب في التعرف عليه",
|
31 |
+
inputs = gr.inputs.Textbox(lines = 3, label = "البيت")
|
32 |
|
33 |
)
|
34 |
demo = gr.TabbedInterface([meter, qafiyah, subject], ["التعرف على البحر","التعرف على القافية","التعرف على الموضوع"])
|
35 |
|
|
|
|
|
|
|
|