Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -60,13 +60,13 @@ feature_names = [
|
|
60 |
]
|
61 |
|
62 |
# Example inputs
|
63 |
-
benign_example = [
|
64 |
-
|
65 |
-
|
66 |
|
67 |
-
malignant_example = [
|
68 |
-
|
69 |
-
|
70 |
|
71 |
def classify(model_choice, image=None, *features):
|
72 |
"""Classify using ViT (image) or NN (features)."""
|
|
|
60 |
]
|
61 |
|
62 |
# Example inputs
|
63 |
+
benign_example = [9.504,12.44,60.34,273.9,0.1024,0.06492,0.02956,0.02076,0.1815,0.06905,0.2773,0.9768,
|
64 |
+
1.909,15.7,0.009606,0.01432,0.01985,0.01421,0.02027,0.002968,10.23,15.66,65.13,314.9,
|
65 |
+
0.1324,0.1148,0.08867,0.06227,0.245,0.07773]
|
66 |
|
67 |
+
malignant_example = [11.42,20.38,77.58,386.1,0.1425,0.2839,0.2414,0.1052,0.2597,0.09744,0.4956,1.156,
|
68 |
+
3.445,27.23,0.00911,0.07458,0.05661,0.01867,0.05963,0.009208,14.91,26.5,98.87,567.7,
|
69 |
+
0.2098,0.8663,0.6869,0.2575,0.6638,0.173]
|
70 |
|
71 |
def classify(model_choice, image=None, *features):
|
72 |
"""Classify using ViT (image) or NN (features)."""
|