invoke method

void invoke()

Runs inference for the loaded graph.

Implementation

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