Spaces:
Sleeping
Sleeping
Commit
·
c077dfd
1
Parent(s):
b96bd6b
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
import pandas as pd
|
2 |
from sklearn.cluster import DBSCAN
|
3 |
import numpy as np
|
@@ -28,6 +29,9 @@ def Predict(inputName):
|
|
28 |
app = gr.Interface(fn=Predict,
|
29 |
inputs="text",
|
30 |
outputs="text",
|
|
|
31 |
theme="grass",
|
32 |
title="Contact Tracing Web App")
|
33 |
-
app.launch()
|
|
|
|
|
|
1 |
+
|
2 |
import pandas as pd
|
3 |
from sklearn.cluster import DBSCAN
|
4 |
import numpy as np
|
|
|
29 |
app = gr.Interface(fn=Predict,
|
30 |
inputs="text",
|
31 |
outputs="text",
|
32 |
+
description = "This app helps you to find out if you have been in contact with someone who has tested positive for COVID-19. As a prototype, it was trained on a dataset of 10 people and their locations. The app takes in their names and outputs the names of people they have been in contact with. The names in this demo are as follows: Adeola, Amaka, Ayoola, Bimpe, Dolapo, Femi, Mayokun, Segun, Seyi, Tolu",
|
33 |
theme="grass",
|
34 |
title="Contact Tracing Web App")
|
35 |
+
app.launch()
|
36 |
+
|
37 |
+
|