DIARC / app.py
Zakia's picture
add title and description
4920d02
raw
history blame
598 Bytes
#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()