invoke method

void invoke()

Runs inference for the loaded graph.

Implementation

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