Yah216's picture
Update app.py
7589384
raw
history blame
No virus
633 Bytes
import gradio as gr
description = "Poem meter detector"
title = "Identify the meter of the poem you are reading or writing with this performant classifier"
examples = [["ุณูŽู„ูˆ ู‚ูŽู„ุจูŠ ุบูŽุฏุงุฉูŽ ุณูŽู„ุง ูˆูŽุซุงุจุง ู„ูŽุนูŽู„ูŽู‘ ุนูŽู„ู‰ ุงู„ุฌูŽู…ุงู„ู ู„ูŽู‡ู ุนูุชุงุจุง"]]
interface1 = gr.Interface.load("huggingface/Yah216/Arabic_poem_meter_3",
description=description,
examples=examples
)
interface2 = gr.Interface.load("huggingface/Yah216/Poem_Qafiyah_Detection",
description=description,
examples=examples
)
interface1.launch(share= True)
interface2.launch()