Skip to content

Commit e33133b

Browse files
Merge pull request #1808 from Jorgetrujilloroman/main
Fixing the Classifying IMU Data sketch
2 parents 15acbbc + b03901a commit e33133b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/get-started-with-machine-learning.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,8 @@ We will be starting a new sketch, you will find the complete code below:
305305
306306
#include <TensorFlowLite.h>
307307
#include <tensorflow/lite/micro/all_ops_resolver.h>
308-
#include <tensorflow/lite/micro/micro_error_reporter.h>
309308
#include <tensorflow/lite/micro/micro_interpreter.h>
310309
#include <tensorflow/lite/schema/schema_generated.h>
311-
#include <tensorflow/lite/version.h>
312310
313311
#include "model.h"
314312
@@ -371,7 +369,7 @@ void setup() {
371369
}
372370
373371
// Create an interpreter to run the model
374-
tflInterpreter = new tflite::MicroInterpreter(tflModel, tflOpsResolver, tensorArena, tensorArenaSize, &tflErrorReporter);
372+
tflInterpreter = new tflite::MicroInterpreter(tflModel, tflOpsResolver, tensorArena, tensorArenaSize);
375373
376374
// Allocate memory for the model's input and output tensors
377375
tflInterpreter->AllocateTensors();

0 commit comments

Comments
 (0)