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