This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/trunk by this push:
new 89487c9 [MAHOUT-2127] Fix broken DistanceMetrics.scala hyperlink
new 6e0f3a0 Merge pull request #410 from lewismc/MAHOUT-2127
89487c9 is described below
commit 89487c9c07e564a3d4e959782544a6c93b99dd0a
Author: Lewis John McGibbney <[email protected]>
AuthorDate: Wed Oct 14 15:34:00 2020 -0700
[MAHOUT-2127] Fix broken DistanceMetrics.scala hyperlink
---
website/docs/latest/algorithms/clustering/distance-metrics.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/docs/latest/algorithms/clustering/distance-metrics.md
b/website/docs/latest/algorithms/clustering/distance-metrics.md
index 6ac37cc..2e576a8 100644
--- a/website/docs/latest/algorithms/clustering/distance-metrics.md
+++ b/website/docs/latest/algorithms/clustering/distance-metrics.md
@@ -55,7 +55,7 @@ serialization of object and keeping the engine bindings as
simple as possible.
that is serialized and sent to the workers is a number which specifies what
distant metric to use- this is much more
abstract and easier to maintain on the back end than making sure each function
can be serialized by any arbitrary engine.
We feel from the user perspective, it may seem quirky but causes no decrease
in usability. If a user wishes to use a
-custom distance metric- simply add it to
[math-scala/src/main/org/apache/mahout/math/common/DistanceMetrics.scala](https://github.com/apache/mahout/blob/master/math-scala/src/main/scala/org/apache/mahout/math/algorithms/common/DistanceMetrics.scala)
+custom distance metric- simply add it to
[math-scala/src/main/org/apache/mahout/math/common/DistanceMetrics.scala](https://github.com/apache/mahout/blob/trunk/core/src/main/scala/org/apache/mahout/math/algorithms/common/distance/DistanceMetrics.scala)
and recompile.
### Examples