Skip to content

Commit

Permalink
reordered doc
Browse files Browse the repository at this point in the history
  • Loading branch information
thunterdb committed Dec 8, 2015
1 parent af8abb9 commit 451b773
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 85 deletions.
14 changes: 0 additions & 14 deletions docs/_data/menu-ml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,5 @@
url: ml-classification-regression.html
- text: Clustering
url: ml-clustering.html
- text: Collaborative filtering
url: ml-collaborative-filtering.html
- text: Chaining transforms with pipelines
url: ml-pipelines.html
- text: Advanced topics
url: ml-advanced.html
- text: Feature extraction, transformation, and selection
url: ml-features.html
- text: Decision trees for classification and regression
url: ml-decision-tree.html
- text: Ensembles
url: ml-ensembles.html
- text: Linear methods with elastic-net regularization
url: ml-linear-methods.html
- text: Multilayer perceptron classifier
url: ml-ann.html
62 changes: 0 additions & 62 deletions docs/ml-ann.md

This file was deleted.

Empty file removed docs/ml-collaborative-filtering.md
Empty file.
2 changes: 1 addition & 1 deletion docs/ml-features.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: global
title: Feature Extraction, Transformation, and Selection - SparkML
displayTitle: <a href="ml-guide.html">ML</a> - Features
displayTitle: Features
---

This section covers algorithms for working with features, roughly divided into these groups:
Expand Down
19 changes: 11 additions & 8 deletions docs/mllib-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,18 @@ We list major functionality from both below, with links to detailed guides.

# spark.ml: high-level APIs for ML pipelines

**[spark.ml programming guide](ml-guide.html)** provides an overview of the Pipelines API and major
concepts. It also contains sections on using algorithms within the Pipelines API, for example:

* [Feature extraction, transformation, and selection](ml-features.html)
* [Overview: estimators, transformers and pipelines](ml-intro.html)
* [Building and transforming features](ml-features.html)
* [Classification and regression](ml-classification-regression.html)
* [Clustering](ml-clustering.html)
* [Decision trees for classification and regression](ml-decision-tree.html)
* [Ensembles](ml-ensembles.html)
* [Linear methods with elastic net regularization](ml-linear-methods.html)
* [Multilayer perceptron classifier](ml-ann.html)
* [Advanced topics](ml-advanced.html)

Some techniques are not available yet in spark.ml, most notably:
- clustering
- collaborative filtering
- dimensionality reduction

Users can seemlessly combine the implementation of these techniques found in `spark.mllib` with the rest of the algorithms found in `spark.ml`.

# Dependencies

Expand Down

0 comments on commit 451b773

Please sign in to comment.