Hi,
I run the evkmimxrt1060_tensorflow_lite_kws example.
After preprocessing audio, I see two function called after that to inference the output: MODEL_RunInference(); and MODEL_ProcessOutput(outputData, &outputDims, outputType, endTime - startTime);
But the example model use the Softmax Regression :

And my model use Logistic Regression:

The question is can I re-use 2 function above for my model? If not, could you suggest me somthing to run inference for my model?