aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-3136][MLLIB] Create Java-friendly methods in RandomRDDsXiangrui Meng2014-08-192-294/+200
* [SPARK-3108][MLLIB] add predictOnValues to StreamingLR and fix predictOnXiangrui Meng2014-08-181-6/+25
* [SPARK-2850] [SPARK-2626] [mllib] MLlib stats examples + small fixesJoseph K. Bradley2014-08-182-6/+16
* [mllib] DecisionTree: treeAggregate + Python example bug fixJoseph K. Bradley2014-08-181-1/+2
* [MLlib] Remove transform(dataset: RDD[String]) from Word2Vec public APILiquan Pei2014-08-181-9/+0
* [SPARK-3097][MLlib] Word2Vec performance improvementLiquan Pei2014-08-171-15/+35
* [SPARK-3087][MLLIB] fix col indexing bug in chi-square and add a check for nu...Xiangrui Meng2014-08-172-8/+31
* [SPARK-3042] [mllib] DecisionTree Filter top-down instead of bottom-upJoseph K. Bradley2014-08-168-558/+520
* [SPARK-3077][MLLIB] fix some chisq-testXiangrui Meng2014-08-162-13/+17
* [SPARK-3081][MLLIB] rename RandomRDDGenerators to RandomRDDsXiangrui Meng2014-08-162-4/+4
* [SPARK-3048][MLLIB] add LabeledPoint.parse and remove loadStreamingLabeledPointsXiangrui Meng2014-08-163-17/+4
* [SPARK-3001][MLLIB] Improve Spearman's correlationXiangrui Meng2014-08-151-78/+42
* [SPARK-3078][MLLIB] Make LRWithLBFGS API consistent with othersXiangrui Meng2014-08-152-35/+14
* [SPARK-3022] [SPARK-3041] [mllib] Call findBins once per level + unordered fe...Joseph K. Bradley2014-08-154-189/+417
* [SPARK-2979][MLlib] Improve the convergence rate by minimizing the condition ...DB Tsai2014-08-142-4/+69
* [SPARK-2995][MLLIB] add ALS.setIntermediateRDDStorageLevelXiangrui Meng2014-08-131-15/+30
* [MLLIB] use Iterator.fill instead of Array.fillXiangrui Meng2014-08-131-5/+5
* [SPARK-2993] [MLLib] colStats (wrapper around MultivariateStatisticalSummary)...Doris Xin2014-08-123-251/+301
* [MLlib] Correctly set vectorSize and alphaLiquan Pei2014-08-121-13/+12
* [SPARK-2923][MLLIB] Implement some basic BLAS routinesXiangrui Meng2014-08-114-65/+269
* [SPARK-2934][MLlib] Adding LogisticRegressionWithLBFGS InterfaceDB Tsai2014-08-111-1/+50
* [SPARK-2515][mllib] Chi Squared testDoris Xin2014-08-113-0/+373
* [SPARK-1997][MLLIB] update breeze to 0.9Xiangrui Meng2014-08-081-2/+2
* [SPARK-2852][MLLIB] Separate model from IDF/StandardScaler algorithmsXiangrui Meng2014-08-072-92/+96
* [mllib] DecisionTree Strategy parameter checksJoseph K. Bradley2014-08-072-3/+38
* [SPARK-2851] [mllib] DecisionTree Python consistency updateJoseph K. Bradley2014-08-064-42/+166
* [SPARK-2852][MLLIB] API consistency for `mllib.feature`Xiangrui Meng2014-08-064-10/+25
* [MLlib] Use this.type as return type in k-means' builder patternDB Tsai2014-08-051-6/+6
* [SPARK-2550][MLLIB][APACHE SPARK] Support regularization and intercept in pys...Michael Giannakopoulos2014-08-051-15/+40
* [SPARK-2864][MLLIB] fix random seed in word2vec; move model to localXiangrui Meng2014-08-051-86/+102
* [MLlib] [SPARK-2510]Word2Vec: Distributed Representation of WordsLiquan Pei2014-08-031-0/+424
* SPARK-2272 [MLlib] Feature scaling which standardizes the range of independen...DB Tsai2014-08-034-1/+247
* [SPARK-2197] [mllib] Java DecisionTree bug fix and easy-of-useJoseph K. Bradley2014-08-035-4/+54
* [SPARK-2478] [mllib] DecisionTree Python APIJoseph K. Bradley2014-08-022-1/+80
* [SPARK-2801][MLlib]: DistributionGenerator renamed to RandomDataGenerator. Ra...Burak2014-08-013-40/+44
* [SPARK-1580][MLLIB] Estimate ALS communication and computation costs.Tor Myklebust2014-08-011-4/+122
* [SPARK-2550][MLLIB][APACHE SPARK] Support regularization and intercept in pys...Michael Giannakopoulos2014-08-011-7/+21
* Streaming mllib [SPARK-2438][MLLIB]Jeremy Freeman2014-08-015-2/+220
* [SPARK-2796] [mllib] DecisionTree bug fix: ordered categorical featuresJoseph K. Bradley2014-08-011-18/+27
* [SPARK-2786][mllib] Python correlationsDoris Xin2014-08-013-26/+72
* SPARK-2768 [MLLIB] Add product, user recommend method to MatrixFactorizationM...Sean Owen2014-08-011-2/+42
* [SPARK-2782][mllib] Bug fix for getRanks in SpearmanCorrelationDoris Xin2014-07-312-18/+22
* [SPARK-2777][MLLIB] change ALS factors storage level to MEMORY_AND_DISKXiangrui Meng2014-07-311-2/+2
* [SPARK-2756] [mllib] Decision tree bug fixesJoseph K. Bradley2014-07-318-154/+370
* [SPARK-2724] Python version of RandomRDDGeneratorsDoris Xin2014-07-312-36/+151
* [SPARK-2511][MLLIB] add HashingTF and IDFXiangrui Meng2014-07-312-0/+273
* SPARK-2341 [MLLIB] loadLibSVMFile doesn't handle regression datasetsSean Owen2014-07-302-92/+16
* [SPARK-2544][MLLIB] Improve ALS algorithm resource usageGuoQiang Li2014-07-301-0/+6
* SPARK-2748 [MLLIB] [GRAPHX] Loss of precision for small arguments to Math.exp...Sean Owen2014-07-301-4/+4
* [SPARK-2174][MLLIB] treeReduce and treeAggregateXiangrui Meng2014-07-294-15/+80