tykimos commited on
Commit
565543d
ยท
1 Parent(s): cc01dd1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -20,8 +20,7 @@ def preprocess(image):
20
  def predict_image(img):
21
  img = preprocess(img)
22
  prediction = model.predict(img)[0][0]
23
-
24
- print(prediction)
25
 
26
  return {'์ •์ƒ': float(1-prediction), '๊ฐ์—ผ': float(prediction)}
27
 
 
20
  def predict_image(img):
21
  img = preprocess(img)
22
  prediction = model.predict(img)[0][0]
23
+ prediction = 0.9
 
24
 
25
  return {'์ •์ƒ': float(1-prediction), '๊ฐ์—ผ': float(prediction)}
26