#Bismillahir Rahmaanir Raheem #Almadadh Ya Gause RadiAllahu Ta'alah Anh - Ameen import gradio as gr def greet(name): return "Hello " + name + "!!" title = "DIabetes-related Amputation Risk Calculator (DIARC)" description = "A diabetes-related amputation machine learning model trained on the diabetes dataset from the Inkosi Albert Luthuli Central Hospital (IALCH), KwaZulu-Natal, South Africa, using Pycaret. Created as a demo with Gradio and hosted on HuggingFace Spaces" iface = gr.Interface(fn=greet, title=title, description=description, inputs="text", outputs="text") iface.launch()