import gradio as gr from gradio.mix import 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", description="Meter detector", examples=examples ) interface2 = gr.Interface.load("huggingface/Yah216/Poem_Qafiyah_Detection", description="Qafiyah", examples=examples ) interface3 = gr.Interface.load( "huggingface/zenkri/autotrain-Arabic_Poetry_by_Subject-920730230", description="Subject detector", examples=examples ) Parallel(interface1, interface2, interface3, examples = examples).launch()