Zakia commited on
Commit
a65b63d
1 Parent(s): a4300fe

add input=

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()