Zakia commited on
Commit
4920d02
1 Parent(s): 1e20656

add title and description

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -7,5 +7,9 @@ import gradio as gr
7
  def greet(name):
8
  return "Hello " + name + "!!"
9
 
10
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
 
 
 
11
  iface.launch()
 
7
  def greet(name):
8
  return "Hello " + name + "!!"
9
 
10
+
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="text", outputs="text")
15
  iface.launch()