diff --git a/src/distance/mod.rs b/src/distance/mod.rs index 3c9833d8..36d55b97 100644 --- a/src/distance/mod.rs +++ b/src/distance/mod.rs @@ -190,8 +190,8 @@ pub fn two_means_binary_quantized( // points to either one of them. We weight each centroid by the number of points // assigned to it, so to balance it. // Even though the points we're working on are binary quantized, for the centroid - // to move, we need to store them as f32. This requires us to convert the binary quantized - // vector to f32 vectors a lot, but the recall suffers too much if we don't do it. + // to move, we need to store it as f32. This requires us to convert every binary quantized + // vectors to f32 vectors, but the recall suffers too much if we don't do it. const ITERATION_STEPS: usize = 200;