add title and description
Browse files
app.py
CHANGED
|
@@ -7,5 +7,9 @@ import gradio as gr
|
|
| 7 |
def greet(name):
|
| 8 |
return "Hello " + name + "!!"
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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()
|