Skip to content

Commit

Permalink
[SPARK-3296][mllib] spark-example should be run-example in head notat…
Browse files Browse the repository at this point in the history
…ion of DenseKMeans and SparseNaiveBayes

`./bin/spark-example`  should be `./bin/run-example` in DenseKMeans and SparseNaiveBayes

Author: wangfei <[email protected]>

Closes apache#2193 from scwf/run-example and squashes the following commits:

207eb3a [wangfei] spark-example should be run-example
27a8999 [wangfei] ./bin/spark-example should be ./bin/run-example
  • Loading branch information
scwf authored and mengxr committed Aug 30, 2014
1 parent 98ddbe6 commit 1390176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.apache.spark.mllib.linalg.Vectors
/**
* An example k-means app. Run with
* {{{
* ./bin/spark-example org.apache.spark.examples.mllib.DenseKMeans [options] <input>
* ./bin/run-example org.apache.spark.examples.mllib.DenseKMeans [options] <input>
* }}}
* If you use it as a template to create your own app, please use `spark-submit` to submit your app.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.apache.spark.mllib.util.MLUtils
/**
* An example naive Bayes app. Run with
* {{{
* ./bin/spark-example org.apache.spark.examples.mllib.SparseNaiveBayes [options] <input>
* ./bin/run-example org.apache.spark.examples.mllib.SparseNaiveBayes [options] <input>
* }}}
* If you use it as a template to create your own app, please use `spark-submit` to submit your app.
*/
Expand Down

0 comments on commit 1390176

Please sign in to comment.