params property

Quantization Params associated with the model, only Android

Implementation

QuantizationParams get params {
  final ref = tfliteBinding.TfLiteTensorQuantizationParams(_tensor);
  return QuantizationParams(ref.scale, ref.zero_point);
}