8static const char *
const TAG =
"micro_wake_word";
15 " Probability cutoff: %.2f\n"
16 " Sliding window size: %d",
17 this->
wake_word_.c_str(), this->probability_cutoff_ / 255.0f, this->sliding_window_size_);
23 " Probability cutoff: %.2f\n"
24 " Sliding window size: %d",
34 ESP_LOGE(TAG,
"Could not allocate the streaming model's variable tensor arena.");
37 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
38 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
41 const tflite::Model *model = tflite::GetModel(this->
model_start_);
42 if (model->version() != TFLITE_SCHEMA_VERSION) {
43 ESP_LOGE(TAG,
"Streaming model's schema is not supported");
50 if (probed_size > 0) {
51 ESP_LOGD(TAG,
"Probed tensor arena size: %zu bytes", probed_size);
54 ESP_LOGW(TAG,
"Arena size probe failed, using manifest size: %zu bytes", this->
tensor_arena_size_);
62 ESP_LOGE(TAG,
"Could not allocate the streaming model's tensor arena.");
71 if (this->
interpreter_->AllocateTensors() != kTfLiteOk) {
72 ESP_LOGE(TAG,
"Failed to allocate tensors for the streaming model");
79 if ((input->dims->size != 3) || (input->dims->data[0] != 1) ||
80 (input->dims->data[2] != PREPROCESSOR_FEATURE_SIZE)) {
81 ESP_LOGE(TAG,
"Streaming model tensor input dimensions has improper dimensions.");
85 if (input->type != kTfLiteInt8) {
86 ESP_LOGE(TAG,
"Streaming model tensor input is not int8.");
92 if ((output->dims->size != 2) || (output->dims->data[0] != 1) || (output->dims->data[1] != 1)) {
93 ESP_LOGE(TAG,
"Streaming model tensor output dimension is not 1x1.");
97 if (output->type != kTfLiteUInt8) {
98 ESP_LOGE(TAG,
"Streaming model tensor output is not uint8.");
118 for (
size_t attempt_size : attempt_sizes) {
119 uint8_t *probe_arena = arena_allocator.
allocate(attempt_size);
120 if (probe_arena ==
nullptr) {
125 auto probe_interpreter = make_unique<tflite::MicroInterpreter>(
128 if (probe_interpreter->AllocateTensors() != kTfLiteOk) {
129 probe_interpreter.reset();
130 arena_allocator.
deallocate(probe_arena, attempt_size);
131 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
132 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
138 size_t lower = (probe_interpreter->arena_used_bytes() + 16 + 15) & ~15;
139 probe_interpreter.reset();
140 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
141 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
143 size_t upper = attempt_size;
145 while (lower < upper) {
146 auto test_interpreter = make_unique<tflite::MicroInterpreter>(
149 bool ok = test_interpreter->AllocateTensors() == kTfLiteOk;
151 test_interpreter.reset();
152 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
153 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
162 lower = ((lower + upper) / 2 + 15) & ~15;
165 arena_allocator.
deallocate(probe_arena, attempt_size);
207 uint8_t stride = this->
interpreter_->input(0)->dims->data[1];
211 (int8_t *) (tflite::GetTensorData<int8_t>(input)) + PREPROCESSOR_FEATURE_SIZE * this->
current_stride_step_,
212 features, PREPROCESSOR_FEATURE_SIZE);
215 if (this->current_stride_step_ >= stride) {
216 TfLiteStatus invoke_status = this->
interpreter_->Invoke();
217 if (invoke_status != kTfLiteOk) {
218 ESP_LOGW(TAG,
"Streaming interpreter invoke failed");
247 size_t sliding_window_average_size,
const std::string &wake_word,
size_t tensor_arena_size,
248 bool default_enabled,
bool internal_only) {
294 return detection_event;
307 return detection_event;
310VADModel::VADModel(
const uint8_t *model_start, uint8_t default_probability_cutoff,
size_t sliding_window_size,
311 size_t tensor_arena_size) {
329 return detection_event;
341 return detection_event;
345 if (op_resolver.AddCallOnce() != kTfLiteOk)
347 if (op_resolver.AddVarHandle() != kTfLiteOk)
349 if (op_resolver.AddReshape() != kTfLiteOk)
351 if (op_resolver.AddReadVariable() != kTfLiteOk)
353 if (op_resolver.AddStridedSlice() != kTfLiteOk)
355 if (op_resolver.AddConcatenation() != kTfLiteOk)
357 if (op_resolver.AddAssignVariable() != kTfLiteOk)
359 if (op_resolver.AddConv2D() != kTfLiteOk)
361 if (op_resolver.AddMul() != kTfLiteOk)
363 if (op_resolver.AddAdd() != kTfLiteOk)
365 if (op_resolver.AddMean() != kTfLiteOk)
367 if (op_resolver.AddFullyConnected() != kTfLiteOk)
369 if (op_resolver.AddLogistic() != kTfLiteOk)
371 if (op_resolver.AddQuantize() != kTfLiteOk)
373 if (op_resolver.AddDepthwiseConv2D() != kTfLiteOk)
375 if (op_resolver.AddAveragePool2D() != kTfLiteOk)
377 if (op_resolver.AddMaxPool2D() != kTfLiteOk)
379 if (op_resolver.AddPad() != kTfLiteOk)
381 if (op_resolver.AddPack() != kTfLiteOk)
383 if (op_resolver.AddSplitV() != kTfLiteOk)
An STL allocator that uses SPI or internal RAM.
void deallocate(T *p, size_t n)
tflite::MicroAllocator * ma_
bool load_model_()
Allocates tensor and variable arenas and sets up the model interpreter.
uint8_t current_stride_step_
size_t sliding_window_size_
bool tensor_arena_size_probed_
std::unique_ptr< tflite::MicroInterpreter > interpreter_
uint8_t default_probability_cutoff_
tflite::MicroMutableOpResolver< 20 > streaming_op_resolver_
bool register_streaming_ops_(tflite::MicroMutableOpResolver< 20 > &op_resolver)
Returns true if successfully registered the streaming model's TensorFlow operations.
void reset_probabilities()
Sets all recent_streaming_probabilities to 0 and resets the ignore window count.
size_t tensor_arena_size_
std::vector< uint8_t > recent_streaming_probabilities_
size_t probe_arena_size_()
Probes the actual required tensor arena size by trial allocation.
bool unprocessed_probability_status_
tflite::MicroResourceVariables * mrv_
bool perform_streaming_inference(const int8_t features[PREPROCESSOR_FEATURE_SIZE])
uint8_t probability_cutoff_
void unload_model()
Destroys the TFLite interpreter and frees the tensor and variable arenas' memory.
const uint8_t * model_start_
DetectionEvent determine_detected() override
Checks for voice activity by comparing the max probability in the sliding window with the probability...
VADModel(const uint8_t *model_start, uint8_t default_probability_cutoff, size_t sliding_window_size, size_t tensor_arena_size)
void log_model_config() override
void enable() override
Enable the model and save to flash. The next performing_streaming_inference call will load it.
DetectionEvent determine_detected() override
Checks for the wake word by comparing the mean probability in the sliding window with the probability...
void log_model_config() override
ESPPreferenceObject pref_
WakeWordModel(const std::string &id, const uint8_t *model_start, uint8_t default_probability_cutoff, size_t sliding_window_average_size, const std::string &wake_word, size_t tensor_arena_size, bool default_enabled, bool internal_only)
Constructs a wake word model object.
void disable() override
Disable the model and save to flash. The next performing_streaming_inference call will unload it.
ESPPreferences * global_preferences
uint32_t fnv1_hash(const char *str)
Calculate a FNV-1 hash of str.
ESPPreferenceObject make_preference(size_t, uint32_t, bool)
uint8_t average_probability