Spaces:
Runtime error
Runtime error
File size: 453 Bytes
c9f72b1 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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() |