Mawube commited on
Commit
6fc2183
·
unverified ·
1 Parent(s): df7fc7d

Update model

Browse files
Files changed (1) hide show
  1. utils/palmoil_classification.py +1 -2
utils/palmoil_classification.py CHANGED
@@ -16,8 +16,7 @@ class AfroPalmModel:
16
 
17
  self.model_path = os.path.dirname(os.path.abspath("ghostnet_model_float32.tflite")) + "/models/ghostnet_model_float32.tflite"
18
 
19
- logging.debug(f"Preparing to read from {self.interpreter_path}")
20
-
21
 
22
  with open(self.model_path, 'rb') as fid:
23
  tflite_model = fid.read()
 
16
 
17
  self.model_path = os.path.dirname(os.path.abspath("ghostnet_model_float32.tflite")) + "/models/ghostnet_model_float32.tflite"
18
 
19
+ logging.debug(f"Preparing to read from {self.model_path}")
 
20
 
21
  with open(self.model_path, 'rb') as fid:
22
  tflite_model = fid.read()