IVFIndexParam constructor

const IVFIndexParam({
  1. MetricType metricType = MetricType.IP,
  2. int nList = 1024,
  3. int nIters = 10,
  4. bool useSoar = false,
  5. QuantizeType quantizeType = QuantizeType.UNDEFINED,
})

Implementation

const IVFIndexParam({
  super.metricType = MetricType.IP,
  this.nList = 1024,
  this.nIters = 10,
  this.useSoar = false,
  super.quantizeType = QuantizeType.UNDEFINED,
}) : super(IndexType.IVF);