You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The call to initialize the MicorInterpreter is:
// Initialize the TFLu interpreter
tflu_interpreter = new tflite::MicroInterpreter(tflu_model, tflu_ops_resolver, tensor_arena, tensor_arena_size, &tflu_error);
But the available signatures for the constructors are:
MicroInterpreter::MicroInterpreter(const Model* model,
const MicroOpResolver& op_resolver,
uint8_t* tensor_arena,
size_t tensor_arena_size,
MicroResourceVariables* resource_variables,
MicroProfilerInterface* profiler)
In classification.ino
The call to initialize the MicorInterpreter is:
// Initialize the TFLu interpreter
tflu_interpreter = new tflite::MicroInterpreter(tflu_model, tflu_ops_resolver, tensor_arena, tensor_arena_size, &tflu_error);
But the available signatures for the constructors are:
MicroInterpreter::MicroInterpreter(const Model* model,
const MicroOpResolver& op_resolver,
uint8_t* tensor_arena,
size_t tensor_arena_size,
MicroResourceVariables* resource_variables,
MicroProfilerInterface* profiler)
MicroInterpreter::MicroInterpreter(const Model* model,
const MicroOpResolver& op_resolver,
MicroAllocator* allocator,
MicroResourceVariables* resource_variables,
MicroProfilerInterface* profiler)
The text was updated successfully, but these errors were encountered: