mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-11-14 07:35:10 +01:00
Grammar fix in Metric.scala file
This commit is contained in:
parent
ec83d01dca
commit
0a623bcb89
@ -178,7 +178,7 @@ case object InnerProduct
|
||||
Success(InnerProductDistance(cosineDistance.distance.toFloat))
|
||||
case distance =>
|
||||
Failure(
|
||||
new IllegalArgumentException(s"Expected a inner product distance but got $distance")
|
||||
new IllegalArgumentException(s"Expected an inner product distance but got $distance")
|
||||
)
|
||||
}
|
||||
}
|
||||
@ -254,7 +254,7 @@ case object Edit extends Metric[EditDistance] with Injection[EditDistance, Servi
|
||||
Success(EditDistance(cosineDistance.distance.toFloat))
|
||||
case distance =>
|
||||
Failure(
|
||||
new IllegalArgumentException(s"Expected a inner product distance but got $distance")
|
||||
new IllegalArgumentException(s"Expected an inner product distance but got $distance")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user