Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Commit a724a25

Browse files
committed
fix
1 parent 11e33a6 commit a724a25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def loadMetaModel():
106106
global M_OUTPUT_LAYER_INDEX
107107

108108
# Load TFLite model and allocate tensors.
109-
M_INTERPRETER = tflite.Interpreter(model_path=userDir + '/BirdNET-Pi/model/BirdNET_GLOBAL_3K_V2.3_MData_Model_FP16.tflite')
109+
M_INTERPRETER = tflite.Interpreter(model_path=userDir + '/BirdNET-Pi/model/BirdNET_GLOBAL_6K_V2.4_MData_Model_FP16.tflite')
110110
M_INTERPRETER.allocate_tensors()
111111

112112
# Get input and output tensors.

scripts/species.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def loadMetaModel():
1717
global CLASSES
1818

1919
# Load TFLite model and allocate tensors.
20-
M_INTERPRETER = tflite.Interpreter(model_path=userDir + '/BirdNET-Pi/model/BirdNET_GLOBAL_3K_V2.3_MData_Model_FP16.tflite')
20+
M_INTERPRETER = tflite.Interpreter(model_path=userDir + '/BirdNET-Pi/model/BirdNET_GLOBAL_6K_V2.4_MData_Model_FP16.tflite')
2121
M_INTERPRETER.allocate_tensors()
2222

2323
# Get input and output tensors.

0 commit comments

Comments
 (0)