Skip to content

Commit e1ca54d

Browse files
committed
- Fixed wrong URLs in MLlib Frequent Pattern Mining, FP-Growth Scala section
1 parent ad882a3 commit e1ca54d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/mllib-frequent-pattern-mining.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ MLlib's FP-growth implementation takes the following (hyper-)parameters:
3939
<div class="codetabs">
4040
<div data-lang="scala" markdown="1">
4141

42-
[`FPGrowth`](api/java/org/apache/spark/mllib/fpm/FPGrowth.html) implements the
42+
[`FPGrowth`](api/scala/index.html#org.apache.spark.mllib.fpm.FPGrowth) implements the
4343
FP-growth algorithm.
4444
It take a `JavaRDD` of transactions, where each transaction is an `Iterable` of items of a generic type.
4545
Calling `FPGrowth.run` with transactions returns an
46-
[`FPGrowthModel`](api/java/org/apache/spark/mllib/fpm/FPGrowthModel.html)
46+
[`FPGrowthModel`](api/scala/index.html#org.apache.spark.mllib.fpm.FPGrowthModel)
4747
that stores the frequent itemsets with their frequencies.
4848

4949
{% highlight scala %}

0 commit comments

Comments
 (0)