Yah216's picture
Update app.py
f8e5021
raw
history blame
709 Bytes
import gradio as gr
from gradio.mix import Series, Parallel
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",
)
interface2 = gr.Interface.load("huggingface/Yah216/Poem_Qafiyah_Detection",
)
interface3 = gr.Interface.load(
"huggingface/zenkri/autotrain-Arabic_Poetry_by_Subject-920730230",
)
Parallel(interface1, interface2, interface3, examples = examples, description = description).launch()