Spaces:
Runtime error
Runtime error
File size: 1,985 Bytes
c9f72b1 4085e56 e770cc2 4085e56 cf123a3 98fc808 c9f72b1 cf123a3 e770cc2 32e10f5 f8e5021 c9f72b1 cf123a3 e770cc2 32e10f5 e770cc2 32e10f5 f8e5021 28d29a9 cf123a3 c15e338 1d65a10 32e10f5 e770cc2 32e10f5 f8e5021 70719fd e770cc2 491dadd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import gradio as gr
description = "ุงูุชุนุฑู ุนูู ุฎุงุตูุงุช ุงูุจูุช ุงูุดุนุฑู"
title = """ูุฐุง ุงูุจุฑูุงู
ุฌ ูููู
ุจุงูุชุนุฑู ุนูู ู
ุฎุชูู ุฎุงุตูุงุช ุงูุจูุช ู
ู ุงูุดุนุฑ.
ูู
ูููู
ุฅุฎุชูุงุฑ ุงูุฎุงุตูุฉ ู
ู ุจูู:
- ุงูุชุนุฑู ุนูู ุงูุจุญุฑ
- ุงูุชุนุฑู ุนูู ุงูุฑูู
ุงูุชุนุฑู ุนูู ุงูู
ูุถูุน-"""
examples = [["ุณููู ูููุจู ุบูุฏุงุฉู ุณููุง ููุซุงุจุง ููุนูููู ุนููู ุงูุฌูู
ุงูู ูููู ุนูุชุงุจุง"], ["ููุง ูุจู ู
ู ุฐููุฑู ุญุจูุจ ูู
ูุฒูู ุจุณููุทู ุงูููููู ุจููู ุงูุฏููุฎูู ูุญูููู
ูู"]]
meter = gr.Interface.load("huggingface/Yah216/Arabic_poem_meter_3",
description="ู
ู ูุถููุ ุฃุฏุฎู ุงูุจูุช ุงูุดุนุฑู ุงูุฐู ุชูุฏ ุงูุชุนุฑู ุนููู",
examples=examples, title = "ุงูุชุนุฑู ุนูู ุงูุจุญุฑ",
inputs = gr.inputs.Textbox(lines = 3, label = "ุงูุจูุช")
)
qafiyah = gr.Interface.load("huggingface/Yah216/Poem_Qafiyah_Detection",
title ="ุงูุชุนุฑู ุนูู ุงูุฑูู",
examples=examples,
description="ู
ู ูุถููุ ุฃุฏุฎู ุงูุจูุช ุงูุดุนุฑู ุงูุฐู ุชูุฏ ุงูุชุนุฑู ุนููู",
inputs = gr.inputs.Textbox(lines = 3, label = "ุงูุจูุช")
)
subject = gr.Interface.load(
"huggingface/zenkri/autotrain-Arabic_Poetry_by_Subject-920730230",
title="ุงูุชุนุฑู ุนูู ุงูู
ูุถูุน",
examples=examples,
description="ู
ู ูุถููุ ุฃุฏุฎู ุงูุจูุช ุงูุดุนุฑู ุงูุฐู ุชูุฏ ุงูุชุนุฑู ุนููู",
inputs = gr.inputs.Textbox(lines = 3, label = "ุงูุจูุช")
)
new_demo = gr.TabbedInterface([meter, qafiyah, subject], ["ุงูุชุนุฑู ุนูู ุงูุจุญุฑ","ุงูุชุนุฑู ุนูู ุงูุฑูู","ุงูุชุนุฑู ุนูู ุงูู
ูุถูุน"])
new_demo.launch()
|