Home
last modified time | relevance | path

Searched refs:kPredictionHistoryLength (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/samples/modules/tflite-micro/magic_wand/src/
Dgesture_predictor.cpp23 float prediction_history[kGestureCount][kPredictionHistoryLength] = {};
39 if (prediction_history_index >= kPredictionHistoryLength) { in PredictGesture()
50 for (int j = 0; j < kPredictionHistoryLength; ++j) { in PredictGesture()
53 const float prediction_average = prediction_sum / kPredictionHistoryLength; in PredictGesture()
Dconstants.hpp37 constexpr int kPredictionHistoryLength = 5; variable