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(share=True)