invoke method

void invoke()

Runs inference for the loaded graph.

Implementation

void invoke() {
  checkState(_allocated, message: 'Interpreter not allocated.');
  checkState(tfliteBinding.TfLiteInterpreterInvoke(_interpreter) ==
      TfLiteStatus.kTfLiteOk);
}