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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -20,7 +20,6 @@ def preprocess(image):
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
 
 
20
  def predict_image(img):
21
  img = preprocess(img)
22
  prediction = model.predict(img)[0][0]
 
23
 
24
  return {'์ •์ƒ': float(1-prediction), '๊ฐ์—ผ': float(prediction)}
25