Spaces:
Runtime error
Runtime error
import gradio as gr | |
from gradio.mix import Series | |
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 | |
) | |
Series(interface1, interface2).launch() | |