Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,9 @@ def predict(img):
|
|
9 |
img = PILImage.create(img)
|
10 |
pred,pred_idx,probs = learn.predict(img)
|
11 |
prediction = str(pred)
|
|
|
|
|
|
|
12 |
|
13 |
|
14 |
title = "Breast cancer detection with AI(Deep Transfer Learning)"
|
|
|
9 |
img = PILImage.create(img)
|
10 |
pred,pred_idx,probs = learn.predict(img)
|
11 |
prediction = str(pred)
|
12 |
+
|
13 |
+
return prediction
|
14 |
+
|
15 |
|
16 |
|
17 |
title = "Breast cancer detection with AI(Deep Transfer Learning)"
|