Skip to content

Commit e368699

Browse files
authored
fix javadoc error (#570)
1 parent 8866988 commit e368699

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

jvector-base/src/main/java/io/github/jbellis/jvector/quantization/VectorCompressor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)