aboutsummaryrefslogtreecommitdiff
path: root/mllib
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-14295][MLLIB][HOTFIX] Fixes Scala 2.10 compilation failureCheng Lian2016-04-011-1/+1
* [SPARK-14303][ML][SPARKR] Define and use KMeansWrapper for SparkR::kmeansYanbo Liang2016-03-312-51/+86
* [SPARK-11262][ML] Unit test for gradient, loss layers, memory management for ...Alexander Ulanov2016-03-317-386/+595
* [SPARK-14295][SPARK-14274][SQL] Implements buildReader() for LibSVMCheng Lian2016-03-312-33/+127
* [SPARK-11892][ML] Model export/import for spark.ml: OneVsRestXusen Yin2016-03-313-18/+223
* [SPARK-13782][ML] Model export/import for spark.ml: BisectingKMeansYuhao Yang2016-03-315-9/+190
* [SPARK-14164][MLLIB] Improve input layer validation of MultilayerPerceptronCl...Dongjoon Hyun2016-03-312-2/+18
* [SPARK-11507][MLLIB] add compact in Matrices fromBreezeYuhao Yang2016-03-302-1/+21
* [MINOR][ML] Fix the wrong param name of LDA topicDistributionColYanbo Liang2016-03-301-1/+1
* [SPARK-14181] TrainValidationSplit should have HasSeedXusen Yin2016-03-302-5/+14
* [SPARK-14154][MLLIB] Simplify the implementation for Kolmogorov–Smirnov testYuhao Yang2016-03-291-73/+4
* [SPARK-13963][ML] Adding binary toggle param to HashingTFBryan Cutler2016-03-294-5/+69
* [SPARK-11730][ML] Add feature importances for GBTs.sethah2016-03-2812-135/+213
* [SPARK-11893] Model export/import for spark.ml: TrainValidationSplitXusen Yin2016-03-285-142/+310
* [SPARK-14187][MLLIB] Fix incorrect use of binarySearch in SparseMatrixChenliang Xu2016-03-282-1/+5
* [SPARK-12494][MLLIB] Array out of bound Exception in KMeans Yarn ModeSean Owen2016-03-281-0/+2
* [SPARK-10691][ML] Make LogisticRegressionModel, LinearRegressionModel evaluat...Joseph K. Bradley2016-03-272-9/+11
* [MINOR][MLLIB] Remove TODO comment DecisionTreeModel.scalaDongjoon Hyun2016-03-271-1/+1
* [SPARK-14089][CORE][MLLIB] Remove methods that has been deprecated since 1.1,...Liwei Lin2016-03-266-137/+0
* [SPARK-14159][ML] Fixed bug in StringIndexer + related issue in RFormulaJoseph K. Bradley2016-03-253-13/+22
* [SPARK-13010][ML][SPARKR] Implement a simple wrapper of AFTSurvivalRegression...Yanbo Liang2016-03-241-0/+99
* [SPARK-11871] Add save/load for MLPCXusen Yin2016-03-242-9/+103
* [SPARK-14030][MLLIB] Add parameter check to MLLIBRuifeng Zheng2016-03-2413-13/+83
* Fix typo in ALS.scalaJuarez Bochi2016-03-241-1/+1
* [SPARK-12183][ML][MLLIB] Remove mllib tree implementation, and wrap spark.ml oneJoseph K. Bradley2016-03-2313-1778/+538
* [SPARK-13952][ML] Add random seed to GBTsethah2016-03-239-39/+66
* [SPARK-14035][MLLIB] Make error message more verbose for mllib NaiveBayesSuiteJoseph K. Bradley2016-03-231-10/+18
* [SPARK-13449] Naive Bayes wrapper in SparkRXusen Yin2016-03-221-0/+75
* [SPARK-13986][CORE][MLLIB] Remove `DeveloperApi`-annotations for non-publicsDongjoon Hyun2016-03-216-11/+0
* [SPARK-14011][CORE][SQL] Enable `LineLength` Java checkstyle ruleDongjoon Hyun2016-03-213-3/+4
* [SPARK-12182][ML] Distributed binning for trees in spark.mlsethah2016-03-202-61/+60
* [SPARK-13629][ML] Add binary toggle Param to CountVectorizerYuhao Yang2016-03-181-14/+9
* [MINOR][ML] When trainingSummary is None, it should throw RuntimeException.Yanbo Liang2016-03-184-20/+8
* [SPARK-10788][MLLIB][ML] Remove duplicate bins for decision treessethah2016-03-179-49/+54
* [SPARK-13761][ML] Remove remaining uses of validateParamsJoseph K. Bradley2016-03-177-61/+27
* [SPARK-11891] Model export/import for RFormula and RFormulaModelXusen Yin2016-03-173-17/+207
* [SPARK-13928] Move org.apache.spark.Logging into org.apache.spark.internal.Lo...Wenchen Fan2016-03-1766-69/+90
* [SPARK-13629][ML] Add binary toggle Param to CountVectorizerYuhao Yang2016-03-172-2/+46
* [SPARK-13761][ML] Deprecate validateParamsYuhao Yang2016-03-1633-89/+36
* [SPARK-11011][SQL] Narrow type of UDT serializationJakob Odersky2016-03-162-2/+2
* [SPARK-13927][MLLIB] add row/column iterator to local matricesXiangrui Meng2016-03-162-1/+76
* [SPARK-11888][ML] Decision tree persistence in spark.mlJoseph K. Bradley2016-03-1623-71/+428
* [SPARK-13613][ML] Provide ignored tests to export test dataset into CSV formatYanbo Liang2016-03-164-33/+97
* [SPARK-13894][SQL] SqlContext.range return type from DataFrame to DataSetCheng Hao2016-03-161-1/+1
* [SPARK-13823][SPARK-13397][SPARK-13395][CORE] More warnings, StandardCharset ...Sean Owen2016-03-161-2/+2
* [SPARK-9837][ML] R-like summary statistics for GLMs via iteratively reweighte...Yanbo Liang2016-03-153-11/+796
* [SPARK-12379][ML][MLLIB] Copy GBT implementation to spark.mlsethah2016-03-1512-15/+306
* [SPARK-13664][SQL] Add a strategy for planning partitioned and bucketed scans...Michael Armbrust2016-03-141-1/+1
* [SPARK-11826][MLLIB] Refactor add() and subtract() methodsEhsan M.Kermani2016-03-142-13/+88
* [SPARK-13686][MLLIB][STREAMING] Add a constructor parameter `reqParam` to (St...Dongjoon Hyun2016-03-142-6/+18