add input=
Browse files
app.py
CHANGED
|
@@ -11,5 +11,5 @@ def greet(age):
|
|
| 11 |
|
| 12 |
title = "DIabetes-related Amputation Risk Calculator (DIARC)"
|
| 13 |
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"
|
| 14 |
-
iface = gr.Interface(fn=greet, title=title, description=description, gr.inputs.Textbox(placeholder="Age Here..."), outputs="text")
|
| 15 |
iface.launch()
|
|
|
|
| 11 |
|
| 12 |
title = "DIabetes-related Amputation Risk Calculator (DIARC)"
|
| 13 |
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"
|
| 14 |
+
iface = gr.Interface(fn=greet, title=title, description=description, inputs=gr.inputs.Textbox(placeholder="Age Here..."), outputs="text")
|
| 15 |
iface.launch()
|