DIARC / app.py
Zakia's picture
made age to be numeric format
7d9a734
raw
history blame
748 Bytes
#Bismillahir Rahmaanir Raheem
#Almadadh Ya Gause RadiAllahu Ta'alah Anh - Ameen
import gradio as gr
def greet(age, gender, race, diabetes_type):
return "Hello " + gender + "!!"
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."
iface = gr.Interface(fn=greet, title=title, description=description, inputs=[gr.inputs.Number(self, default=None, label=None), gr.inputs.Textbox(placeholder="Gender Here..."), gr.inputs.Textbox(placeholder="Race Here..."), gr.inputs.Textbox(placeholder="Diabetes Type Here...")], outputs="text")
iface.launch()