aboutsummaryrefslogtreecommitdiff
path: root/docs/ml-clustering.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ml-clustering.md')
-rw-r--r--docs/ml-clustering.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/ml-clustering.md b/docs/ml-clustering.md
index 8a0a61cb59..eedacb12bc 100644
--- a/docs/ml-clustering.md
+++ b/docs/ml-clustering.md
@@ -65,7 +65,7 @@ called [kmeans||](http://theory.stanford.edu/~sergei/papers/vldb12-kmpar.pdf).
</tbody>
</table>
-### Example
+**Examples**
<div class="codetabs">
@@ -94,6 +94,8 @@ Refer to the [Python API docs](api/python/pyspark.ml.html#pyspark.ml.clustering.
and generates a `LDAModel` as the base model. Expert users may cast a `LDAModel` generated by
`EMLDAOptimizer` to a `DistributedLDAModel` if needed.
+**Examples**
+
<div class="codetabs">
<div data-lang="scala" markdown="1">
@@ -128,7 +130,7 @@ Bisecting K-means can often be much faster than regular K-means, but it will gen
`BisectingKMeans` is implemented as an `Estimator` and generates a `BisectingKMeansModel` as the base model.
-### Example
+**Examples**
<div class="codetabs">
@@ -210,7 +212,7 @@ model.
</tbody>
</table>
-### Example
+**Examples**
<div class="codetabs">