Skip to content

Commit c637f63

Browse files
committed
PR nits
1 parent a8359bd commit c637f63

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/NRedisStack/Search/Schema.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -405,15 +405,15 @@ public enum VectorDistanceMetric
405405
/// </summary>
406406
NotSpecified = 0,
407407
/// <summary>
408-
/// Euclidean distance between two vectors.
408+
/// Euclidean distance between two vectors - this corresponds to the L2 option in Redis.
409409
/// </summary>
410410
EuclideanDistance = 1,
411411
/// <summary>
412-
/// Inner product of two vectors.
412+
/// Inner product of two vectors - this corresponds to the IP option in Redis.
413413
/// </summary>
414414
InnerProduct = 2,
415415
/// <summary>
416-
/// Cosine distance of two vectors.
416+
/// Cosine distance of two vectors - this corresponds to the COSINE option in Redis.
417417
/// </summary>
418418
CosineDistance = 3,
419419
}
@@ -604,7 +604,7 @@ internal override void AddDirectAttributes(List<object> args)
604604
/// </summary>
605605
public int TrainingThreshold { get; set; }
606606
/// <summary>
607-
/// The dimension used when using LeanVec compression for dimensionality reduction; defaults to dim/2 (applicable only with compression of type LeanVec, should always be < dim)
607+
/// The dimension used when using LeanVec compression for dimensionality reduction; defaults to dim/2 (applicable only with compression of type LeanVec, should always be &lt; dim)
608608
/// </summary>
609609
public int ReducedDimensions { get; set; }
610610

0 commit comments

Comments
 (0)