| 19 | |
| 20 | |
| 21 | std::vector<int8_t> KWSPipeline::PreProcessing(std::vector<float>& audio) |
| 22 | { |
| 23 | return m_preProcessor->Invoke(audio.data(), audio.size(), m_executor->GetQuantizationOffset(), |
| 24 | m_executor->GetQuantizationScale()); |
| 25 | } |
| 26 | |
| 27 | void KWSPipeline::Inference(const std::vector<int8_t>& preprocessedData, |
| 28 | common::InferenceResults<int8_t>& result) |
no test coverage detected