diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/get-started-with-machine-learning.md b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/get-started-with-machine-learning.md index 26453eb305..bcfedd0776 100644 --- a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/get-started-with-machine-learning.md +++ b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/get-started-with-machine-learning.md @@ -305,10 +305,8 @@ We will be starting a new sketch, you will find the complete code below: #include #include -#include #include #include -#include #include "model.h" @@ -371,7 +369,7 @@ void setup() { } // Create an interpreter to run the model - tflInterpreter = new tflite::MicroInterpreter(tflModel, tflOpsResolver, tensorArena, tensorArenaSize, &tflErrorReporter); + tflInterpreter = new tflite::MicroInterpreter(tflModel, tflOpsResolver, tensorArena, tensorArenaSize); // Allocate memory for the model's input and output tensors tflInterpreter->AllocateTensors();