aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main/scala/org/apache
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-14312][ML][SPARKR] NaiveBayes model persistence in SparkRYanbo Liang2016-04-252-3/+94
* [SPARK-10574][ML][MLLIB] HashingTF supports MurmurHash3Yanbo Liang2016-04-252-5/+101
* [SPARK-14433][PYSPARK][ML] PySpark ml GaussianMixturewm624@hotmail.com2016-04-251-2/+25
* [SPARK-14758][ML] Add checking for StepSize and TolZheng RuiFeng2016-04-251-2/+4
* [SPARK-14868][BUILD] Enable NewLineAtEofChecker in checkstyle and fix lint-ja...Dongjoon Hyun2016-04-241-1/+1
* [MINOR][ML][MLLIB] Remove unused importsZheng RuiFeng2016-04-225-8/+4
* [SPARK-14843][ML] Fix encoding error in LibSVMRelationLiang-Chi Hsieh2016-04-231-3/+6
* [MINOR][DOC] Fix doc style in ml.ann.Layer and MultilayerPerceptronClassifierZheng RuiFeng2016-04-222-40/+40
* [SPARK-6429] Implement hashCode and equals togetherJoan2016-04-223-6/+22
* [SPARK-14479][ML] GLM supports output link predictionYanbo Liang2016-04-211-2/+60
* [SPARK-14734][ML][MLLIB] Added asML, fromML methods for all spark.mllib Vecto...Joseph K. Bradley2016-04-212-1/+67
* [SPARK-14569][ML] Log instrumentation in KMeansXin Ren2016-04-213-6/+23
* [SPARK-14478][ML][MLLIB][DOC] Doc that StandardScaler uses the corrected samp...Joseph K. Bradley2016-04-202-0/+10
* [SPARK-14687][CORE][SQL][MLLIB] Call path.getFileSystem(conf) instead of call...Liwei Lin2016-04-201-1/+2
* [SPARK-14407][SQL] Hides HadoopFsRelation related data source API into execut...Cheng Lian2016-04-191-1/+1
* [SPARK-14564][ML][MLLIB][PYSPARK] Python Word2Vec missing setWindowSize methodJason Lee2016-04-181-1/+4
* [SPARK-14306][ML][PYSPARK] PySpark ml.classification OneVsRest support export...Xusen Yin2016-04-181-0/+7
* [MINOR] Remove inappropriate type notation and extra anonymous closure within...hyukjinkwon2016-04-162-3/+4
* [SPARK-13925][ML][SPARKR] Expose R-like summary statistics in SparkR::glm for...Yanbo Liang2016-04-151-6/+46
* [SPARK-14370][MLLIB] removed duplicate generation of ids in OnlineLDAOptimizerPravin Gadakh2016-04-152-11/+10
* [SPARK-12869] Implemented an improved version of the toIndexedRowMatrixFokko Driesprong2016-04-141-6/+28
* [SPARK-14565][ML] RandomForest should use parseInt and parseDouble for featur...Yong Tang2016-04-143-11/+23
* [SPARK-14618][ML][DOC] Updated RegressionEvaluator.metricName param docJoseph K. Bradley2016-04-141-4/+5
* [SPARK-14375][ML] Unit test for spark.ml KMeansSummaryYanbo Liang2016-04-132-7/+30
* [SPARK-14461][ML] GLM training summaries should provide solverYanbo Liang2016-04-131-3/+7
* [SPARK-10386][MLLIB] PrefixSpanModel supports save/loadYanbo Liang2016-04-131-1/+95
* [SPARK-13783][ML] Model export/import for spark.ml: GBTsYanbo Liang2016-04-136-97/+229
* [SPARK-14568][ML] Instrumentation framework for logistic regressionTimothy Hunter2016-04-132-1/+127
* Revert "[SPARK-14154][MLLIB] Simplify the implementation for Kolmogorov–Smi...Xiangrui Meng2016-04-131-4/+73
* [MINOR][SQL] Remove some unused imports in datasources.hyukjinkwon2016-04-131-3/+0
* [SPARK-14147][ML][SPARKR] SparkR predict should not output feature columnYanbo Liang2016-04-122-2/+4
* [SPARK-14563][ML] use a random table name instead of __THIS__ in SQLTransformerXiangrui Meng2016-04-121-4/+6
* [SPARK-13322][ML] AFTSurvivalRegression supports feature standardizationYanbo Liang2016-04-121-34/+71
* [SPARK-12566][SPARK-14324][ML] GLM model family, link function support in Spa...Yanbo Liang2016-04-122-115/+79
* [SPARK-3724][ML] RandomForest: More options for feature subset size.Yong Tang2016-04-123-3/+21
* [SPARK-14508][BUILD] Add a new ScalaStyle Rule `OmitBracesInCase`Dongjoon Hyun2016-04-125-14/+7
* [SPARK-14535][SQL] Remove buildInternalScan from FileFormatWenchen Fan2016-04-111-33/+1
* [SPARK-13600][MLLIB] Use approxQuantile from DataFrame stats in QuantileDiscr...Oliver Pierson2016-04-111-94/+25
* [SPARK-14510][MLLIB] Add args-checking for LDA and StreamingKMeansZheng RuiFeng2016-04-112-3/+17
* [SPARK-14500] [ML] Accept Dataset[_] instead of DataFrame in MLlib APIsXiangrui Meng2016-04-1156-201/+243
* [SPARK-14497][ML] Use top instead of sortBy() to get top N frequent words as ...fwang12016-04-101-10/+4
* [SPARK-14392][ML] CountVectorizer Estimator should include binary toggle Paramwm624@hotmail.com2016-04-091-17/+18
* [SPARK-14498][ML][PYTHON][SQL] Many cleanups to ML and ML-related docsJoseph K. Bradley2016-04-087-40/+80
* [SPARK-14298][ML][MLLIB] LDA should support disable checkpointYanbo Liang2016-04-082-3/+6
* [SPARK-13048][ML][MLLIB] keepLastCheckpoint option for LDA EM optimizerJoseph K. Bradley2016-04-074-23/+144
* [SPARK-12382][ML] Remove mllib GBT implementation and wrap mlsethah2016-04-063-181/+120
* [SPARK-14444][BUILD] Add a new scalastyle `NoScalaDoc` to prevent ScalaDoc-st...Dongjoon Hyun2016-04-061-4/+6
* [SPARK-13430][PYSPARK][ML] Python API for training summaries of linear and lo...Bryan Cutler2016-04-062-12/+37
* [SPARK-13538][ML] Add GaussianMixture to MLZheng RuiFeng2016-04-061-0/+311
* [SPARK-14322][MLLIB] Use treeAggregate instead of reduce in OnlineLDAOptimizerYuhao Yang2016-04-061-2/+3