aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main
Commit message (Expand)AuthorAgeFilesLines
* Fix code style and a nondeterministic RDD issue in ALSMatei Zaharia2013-08-221-11/+20
* FixHolden Karau2013-08-151-2/+2
* Code review feedback :)Holden Karau2013-08-121-7/+7
* Use less instances of the random class during ALS setupHolden Karau2013-08-121-7/+14
* Clean up scaladoc in ML Lib.Shivaram Venkataraman2013-08-1115-60/+171
* Merge pull request #762 from shivaram/sgd-cleanupEvan Sparks2013-08-1114-337/+389
|\
| * Fix GLM code review comments and move java testsShivaram Venkataraman2013-08-101-6/+2
| * Add setters for optimizer, gradient in SGD.Shivaram Venkataraman2013-08-082-8/+19
| * Merge branch 'master' of git://github.com/mesos/spark into sgd-cleanupShivaram Venkataraman2013-08-065-6/+201
| |\
| * | Refactor GLM algorithms and add Java testsShivaram Venkataraman2013-08-0613-96/+131
| * | Move implicit arg to constructor for Java access.Shivaram Venkataraman2013-08-031-4/+7
| * | Refactor optimizers and create GLMsShivaram Venkataraman2013-08-027-271/+309
| * | Refactor SGD options into a new class.Shivaram Venkataraman2013-07-315-145/+114
* | | Merge pull request #786 from shivaram/mllib-javaMatei Zaharia2013-08-092-15/+16
|\ \ \
| * | | Remove Java-specific constructor for Rating.Shivaram Venkataraman2013-08-081-10/+1
| * | | Add a test case for random initialization.Shivaram Venkataraman2013-08-061-2/+2
| * | | Java examples, tests for KMeans and ALSShivaram Venkataraman2013-08-062-12/+22
| | |/ | |/|
* / | Fixed a typo in mllib inline documentation.Reynold Xin2013-08-081-1/+1
|/ /
* | fixing formatting, style, and inputGinger Smith2013-08-051-36/+37
* | fixing formattingGinger Smith2013-08-051-16/+23
* | adding matrix factorization data generatorGinger Smith2013-08-021-0/+105
* | Increase Kryo buffer size in ALS since some arrays become bigMatei Zaharia2013-08-021-0/+1
* | Merge pull request #761 from mateiz/kmeans-generatorshivaram2013-07-312-4/+85
|\ \
| * | Turn on caching in KMeans.mainMatei Zaharia2013-07-311-1/+1
| * | Added data generator for K-meansMatei Zaharia2013-07-312-3/+84
| |/
* / Use the Char version of split() instead of the String one for efficiencyMatei Zaharia2013-07-311-2/+2
|/
* Minor style cleanup of mllib.Reynold Xin2013-07-305-35/+39
* Renamed Classification.scala to ClassificationModel.scala and Regression.scal...Reynold Xin2013-07-302-0/+0
* made SimpleUpdater consistent with other updatersAmeet Talwalkar2013-07-291-1/+2
* Clarify how regVal is computed in Updater docsShivaram Venkataraman2013-07-291-8/+9
* Remove duplicate loss history and clarify why.Shivaram Venkataraman2013-07-293-13/+9
* Style fixXinghao2013-07-292-2/+4
* Deleting extra LogisticRegressionGenerator and RidgeRegressionGeneratorXinghao2013-07-292-96/+0
* Fix rounding error in LogisticRegression.scalaXinghao2013-07-291-2/+4
* Replace map-reduce with dot operator using DoubleMatrixXinghao2013-07-282-4/+6
* Fixed SVM and LR train functions to take Int instead of Double for Classifica...Xinghao2013-07-282-17/+16
* Changed Classification to return Int instead of DoubleXinghao2013-07-286-28/+28
* Move data generators to utilXinghao2013-07-282-0/+0
* Change *_LocalRandomSGD to *LocalRandomSGDXinghao2013-07-283-15/+15
* Resolve conflicts with master, removed regParam for LogisticRegressionXinghao2013-07-265-55/+313
* New files from merge with masterXinghao2013-07-2611-5/+329
|\
| * Made RegressionModel serializable and added unit tests to make sure predict m...Reynold Xin2013-07-235-9/+16
| * Merge pull request #711 from shivaram/ml-generatorsMatei Zaharia2013-07-192-39/+75
| |\
| | * Rename classes to be called DataGeneratorShivaram Venkataraman2013-07-182-3/+2
| | * Refactor data generators to have a function that can be used in tests.Shivaram Venkataraman2013-07-182-34/+71
| | * Move ML lib data generator files to util/Shivaram Venkataraman2013-07-172-2/+2
| * | Return Array[Double] from SGD instead of DoubleMatrixShivaram Venkataraman2013-07-172-6/+4
| * | Change weights to be Array[Double] in LR model.Shivaram Venkataraman2013-07-172-9/+13
| * | Rename loss -> stochasticLoss and add a note to explain why we haveShivaram Venkataraman2013-07-173-8/+13
| * | Allow initial weight vectors in LogisticRegression.Shivaram Venkataraman2013-07-173-21/+63
| |/