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",
30 ESP_LOGE(TAG,
"Streaming model has no data to load");
39 ESP_LOGE(TAG,
"Could not allocate the streaming model's variable tensor arena.");
42 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
43 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
46 const tflite::Model *model = tflite::GetModel(this->
model_start_);
47 if (model->version() != TFLITE_SCHEMA_VERSION) {
48 ESP_LOGE(TAG,
"Streaming model's schema is not supported");
55 if (probed_size > 0) {
56 ESP_LOGD(TAG,
"Probed tensor arena size: %zu bytes", probed_size);
59 ESP_LOGW(TAG,
"Arena size probe failed, using manifest size: %zu bytes", this->
tensor_arena_size_);
67 ESP_LOGE(TAG,
"Could not allocate the streaming model's tensor arena.");
76 if (this->
interpreter_->AllocateTensors() != kTfLiteOk) {
77 ESP_LOGE(TAG,
"Failed to allocate tensors for the streaming model");
84 if ((input->dims->size != 3) || (input->dims->data[0] != 1) ||
85 (input->dims->data[2] != PREPROCESSOR_FEATURE_SIZE)) {
86 ESP_LOGE(TAG,
"Streaming model tensor input dimensions has improper dimensions.");
90 if (input->type != kTfLiteInt8) {
91 ESP_LOGE(TAG,
"Streaming model tensor input is not int8.");
97 if ((output->dims->size != 2) || (output->dims->data[0] != 1) || (output->dims->data[1] != 1)) {
98 ESP_LOGE(TAG,
"Streaming model tensor output dimension is not 1x1.");
102 if (output->type != kTfLiteUInt8) {
103 ESP_LOGE(TAG,
"Streaming model tensor output is not uint8.");
123 for (
size_t attempt_size : attempt_sizes) {
124 uint8_t *probe_arena = arena_allocator.
allocate(attempt_size);
125 if (probe_arena ==
nullptr) {
130 auto probe_interpreter = make_unique<tflite::MicroInterpreter>(
133 if (probe_interpreter->AllocateTensors() != kTfLiteOk) {
134 probe_interpreter.reset();
135 arena_allocator.
deallocate(probe_arena, attempt_size);
136 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
137 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
143 size_t lower = (probe_interpreter->arena_used_bytes() + 16 + 15) & ~15;
144 probe_interpreter.reset();
145 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
146 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
148 size_t upper = attempt_size;
150 while (lower < upper) {
151 auto test_interpreter = make_unique<tflite::MicroInterpreter>(
154 bool ok = test_interpreter->AllocateTensors() == kTfLiteOk;
156 test_interpreter.reset();
157 this->
ma_ = tflite::MicroAllocator::Create(this->
var_arena_, STREAMING_MODEL_VARIABLE_ARENA_SIZE);
158 this->
mrv_ = tflite::MicroResourceVariables::Create(this->
ma_, 20);
167 lower = ((lower + upper) / 2 + 15) & ~15;
170 arena_allocator.
deallocate(probe_arena, attempt_size);
219 uint8_t stride = this->
interpreter_->input(0)->dims->data[1];
223 (int8_t *) (tflite::GetTensorData<int8_t>(input)) + PREPROCESSOR_FEATURE_SIZE * this->
current_stride_step_,
224 features, PREPROCESSOR_FEATURE_SIZE);
227 if (this->current_stride_step_ >= stride) {
228 TfLiteStatus invoke_status = this->
interpreter_->Invoke();
229 if (invoke_status != kTfLiteOk) {
230 ESP_LOGW(TAG,
"Streaming interpreter invoke failed");
259 size_t sliding_window_average_size,
const std::string &wake_word,
size_t tensor_arena_size,
260 bool default_enabled,
bool internal_only) {
285 uint8_t default_probability_cutoff,
size_t sliding_window_average_size,
286 const std::string &wake_word, std::vector<std::string> trained_languages,
287 size_t tensor_arena_size) {
295 ESP_LOGE(TAG,
"Model '%s' has no valid data and will not be loaded",
id.c_str());
341 return detection_event;
354 return detection_event;
357VADModel::VADModel(
const uint8_t *model_start, uint8_t default_probability_cutoff,
size_t sliding_window_size,
358 size_t tensor_arena_size) {
376 return detection_event;
388 return detection_event;
392 if (op_resolver.AddCallOnce() != kTfLiteOk)
394 if (op_resolver.AddVarHandle() != kTfLiteOk)
396 if (op_resolver.AddReshape() != kTfLiteOk)
398 if (op_resolver.AddReadVariable() != kTfLiteOk)
400 if (op_resolver.AddStridedSlice() != kTfLiteOk)
402 if (op_resolver.AddConcatenation() != kTfLiteOk)
404 if (op_resolver.AddAssignVariable() != kTfLiteOk)
406 if (op_resolver.AddConv2D() != kTfLiteOk)
408 if (op_resolver.AddMul() != kTfLiteOk)
410 if (op_resolver.AddAdd() != kTfLiteOk)
412 if (op_resolver.AddMean() != kTfLiteOk)
414 if (op_resolver.AddFullyConnected() != kTfLiteOk)
416 if (op_resolver.AddLogistic() != kTfLiteOk)
418 if (op_resolver.AddQuantize() != kTfLiteOk)
420 if (op_resolver.AddDepthwiseConv2D() != kTfLiteOk)
422 if (op_resolver.AddAveragePool2D() != kTfLiteOk)
424 if (op_resolver.AddMaxPool2D() != kTfLiteOk)
426 if (op_resolver.AddPad() != kTfLiteOk)
428 if (op_resolver.AddPack() != kTfLiteOk)
430 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
std::shared_ptr< ModelData > model_data_
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 with compile-time model data.
void disable() override
Disable the model and save to flash. The next performing_streaming_inference call will unload it.
std::vector< std::string > trained_languages_
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