Skip to content

Commit

Permalink
fixed slash
Browse files Browse the repository at this point in the history
  • Loading branch information
jsten07 committed Jan 25, 2022
1 parent 9e77fb4 commit 726b665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TFLite_classify_birds.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def add_spec(spec_dict):
else:
from tensorflow.lite.python.interpreter import Interpreter

interpreter = Interpreter(model_path="/models/bird_classification/classify.tflite")
labels = load_labels("/models/bird_classification/probability-labels-en.txt")
interpreter = Interpreter(model_path="models/bird_classification/classify.tflite")
labels = load_labels("models/bird_classification/probability-labels-en.txt")

interpreter.allocate_tensors()

Expand Down

0 comments on commit 726b665

Please sign in to comment.