rkonan commited on
Commit
b7645dd
·
1 Parent(s): 1bc4593

correction bug

Browse files
Files changed (1) hide show
  1. app/model.py +1 -1
app/model.py CHANGED
@@ -433,7 +433,7 @@ def predict_with_cache(config, image_bytes: bytes):
433
  "entropy":entropy
434
  }
435
  cache[pred_key] = result
436
- return
437
 
438
  def predict_with_model(config, image_bytes: bytes):
439
  return predict_with_cache(config, image_bytes)
 
433
  "entropy":entropy
434
  }
435
  cache[pred_key] = result
436
+ return result
437
 
438
  def predict_with_model(config, image_bytes: bytes):
439
  return predict_with_cache(config, image_bytes)