File tree Expand file tree Collapse file tree
jvector-base/src/main/java/io/github/jbellis/jvector/quantization Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ default void write(DataOutput out) throws IOException {
8181
8282 /**
8383 * Compute the mean squared error (MSE) for the given vector.
84- * </p>
84+ *
8585 * MSE = (sum of squared errors over all dimensions) / (number of dimensions)
8686 * @param vector the vector to compute the reconstruction error for
8787 * @return the reconstruction error for the given vector
@@ -90,7 +90,7 @@ default void write(DataOutput out) throws IOException {
9090
9191 /**
9292 * Compute the mean squared error (MSE) for each vector in the stream.
93- * </p>
93+ *
9494 * MSE = (sum of squared errors over all dimensions) / (number of dimensions)
9595 * @param ravv the vectors to compute the reconstruction error for
9696 * @return the reconstruction error for each vector
@@ -101,7 +101,7 @@ default double[] reconstructionErrors(RandomAccessVectorValues ravv) {
101101
102102 /**
103103 * Compute the mean squared error (MSE) for each vector in the stream in parallel.
104- * </p>
104+ *
105105 * MSE = (sum of squared errors over all dimensions) / (number of dimensions)
106106 * @param ravv the vectors to compute the reconstruction error for
107107 * @param simdExecutor the ForkJoinPool to use for SIMD operations
You can’t perform that action at this time.
0 commit comments