allocateTensors method

void allocateTensors()

Updates allocations for all tensors.

Implementation

void allocateTensors() {
  checkTfLiteStatus(
    'TfLiteInterpreterAllocateTensors',
    tfliteBinding.TfLiteInterpreterAllocateTensors(_interpreter),
  );
  _allocated = true;
}