Lines Matching full:inference
16 …eric Keyword Spotting pipeline with 3 steps: data pre-processing, inference execution and inference
26 * @param executor - unique pointer to inference runner
27 * @param decoder - unique pointer to inference results decoder
36 * Preprocesses and prepares the data for inference by
45 * @brief Executes inference
47 * Calls inference runner provided during instance construction.
49 …* @param[in] preprocessedData - input inference data. Data type should be aligned with input tenso…
50 * @param[out] result - raw inference results.
52 …void Inference(const std::vector<int8_t>& preprocessedData, common::InferenceResults<int8_t>& resu…
55 * @brief Standard inference results post-processing implementation.
57 * Decodes inference results using decoder provided during construction.
59 * @param[in] inferenceResult - inference results to be decoded.