params property

QuantizationParams get params

Quantization params associated with the tensor.

Implementation

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