pub struct BatchResult {
pub results: Vec<Result<QuantizedVector, QuantError>>,
pub stats: BatchStats,
}Expand description
Result of a batch quantization operation
Fields§
§results: Vec<Result<QuantizedVector, QuantError>>List of successfully quantized vectors (in order, failures are skipped or handled) Note: This implementation returns Results in the vector to maintain index alignment
stats: BatchStatsStatistics about the operation