aboutsummaryrefslogtreecommitdiff
path: root/mllib
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-16241][ML] model loading backward compatibility for ml NaiveBayeszlpmichelle2016-06-301-4/+7
* [SPARK-15858][ML] Fix calculating error by tree stack over flow prob…Mahmoud Rawas2016-06-292-43/+34
* [SPARK-16245][ML] model loading backward compatibility for ml.feature.PCAYanbo Liang2016-06-281-10/+8
* [SPARK-16242][MLLIB][PYSPARK] Conversion between old/new matrix columns in a ...Yanbo Liang2016-06-281-0/+14
* [SPARK-16187][ML] Implement util method for ML Matrix conversion in scala/javaYuhao Yang2016-06-274-7/+187
* [MLLIB] org.apache.spark.mllib.util.SVMDataGenerator generates ArrayIndexOutO...José Antonio2016-06-251-1/+1
* [SPARK-16133][ML] model loading backward compatibility for ml.featureYuhao Yang2016-06-233-5/+11
* [SPARK-16177][ML] model loading backward compatibility for ml.regressionYuhao Yang2016-06-232-7/+10
* [SPARK-16130][ML] model loading backward compatibility for ml.classfication.L...Yuhao Yang2016-06-231-5/+5
* [SPARK-16154][MLLIB] Update spark.ml and spark.mllib package docsXiangrui Meng2016-06-235-9/+72
* [SPARK-16153][MLLIB] switch to multi-line doc to avoid a genjavadoc bugXiangrui Meng2016-06-221-1/+3
* [MINOR][MLLIB] DefaultParamsReadable/Writable should be DeveloperApiXiangrui Meng2016-06-221-8/+5
* [SPARK-16127][ML][PYPSARK] Audit @Since annotations related to ml.linalgNick Pentreath2016-06-2212-31/+31
* [SPARK-15162][SPARK-15164][PYSPARK][DOCS][ML] update some pydocsHolden Karau2016-06-221-3/+2
* [SPARK-15644][MLLIB][SQL] Replace SQLContext with SparkSession in MLlibgatorsmile2016-06-2130-80/+99
* [MINOR][MLLIB] deprecate setLabelCol in ChiSqSelectorModelXiangrui Meng2016-06-211-0/+1
* [SPARK-16118][MLLIB] add getDropLast to OneHotEncoderXiangrui Meng2016-06-212-1/+7
* [SPARK-16117][MLLIB] hide LibSVMFileFormat and move its doc to LibSVMDataSourceXiangrui Meng2016-06-212-38/+59
* [MINOR][MLLIB] move setCheckpointInterval to non-expert settersXiangrui Meng2016-06-211-1/+1
* [SPARK-15177][.1][R] make SparkR model params and default values consistent w...Xiangrui Meng2016-06-212-6/+6
* [SPARK-10258][DOC][ML] Add @Since annotations to ml.featureNick Pentreath2016-06-2127-63/+357
* [SPARK-16074][MLLIB] expose VectorUDT/MatrixUDT in a public APIXiangrui Meng2016-06-203-0/+93
* [SPARK-15946][MLLIB] Conversion between old/new vector columns in a DataFrame...Xiangrui Meng2016-06-171-0/+14
* [SPARK-16008][ML] Remove unnecessary serialization in logistic regressionsethah2016-06-171-28/+29
* [SPARK-15922][MLLIB] `toIndexedRowMatrix` should consider the case `cols < of...Dongjoon Hyun2016-06-162-1/+6
* [SPARK-15983][SQL] Removes FileFormat.prepareReadCheng Lian2016-06-161-16/+17
* [SPARK-15979][SQL] Rename various Parquet support classes.Reynold Xin2016-06-151-5/+1
* [DOCS] Fix Gini and Entropy scaladocs in context of multiclass classificationWojciech Jurczyk2016-06-152-3/+2
* [SPARK-15945][MLLIB] Conversion between old/new vector columns in a DataFrame...Xiangrui Meng2016-06-143-8/+218
* [SPARK-15364][ML][PYSPARK] Implement PySpark picklers for ml.Vector and ml.Ma...Liang-Chi Hsieh2016-06-133-241/+364
* [SPARK-15892][ML] Incorrectly merged AFTAggregator with zero total counthyukjinkwon2016-06-122-1/+13
* [SPARK-15654] [SQL] fix non-splitable files for text based file formatsDavies Liu2016-06-101-1/+1
* [SPARK-15875] Try to use Seq.isEmpty and Seq.nonEmpty instead of Seq.length =...wangyang2016-06-101-1/+1
* [SPARK-15738][PYSPARK][ML] Adding Pyspark ml RFormula __str__ method similar ...Bryan Cutler2016-06-102-2/+14
* [SPARK-15793][ML] Add maxSentenceLength for ml.Word2Vecyinxusen2016-06-082-0/+20
* [SPARK-13590][ML][DOC] Document spark.ml LiR, LoR and AFTSurvivalRegression b...Yanbo Liang2016-06-073-1/+22
* [SPARK-15721][ML] Make DefaultParamsReadable, DefaultParamsWritable publicJoseph K. Bradley2016-06-061-3/+41
* [MINOR] Fix Typos 'an -> a'Zheng RuiFeng2016-06-069-10/+10
* [SPARK-15748][SQL] Replace inefficient foldLeft() call with flatMap() in Part...Josh Rosen2016-06-051-1/+1
* [SPARK-15770][ML] Annotation audit for Experimental and DeveloperApiZheng RuiFeng2016-06-0513-3/+50
* [SPARK-15617][ML][DOC] Clarify that fMeasure in MulticlassMetrics is "micro" ...Ruifeng Zheng2016-06-042-8/+6
* [SPARK-15494][SQL] encoder code cleanupWenchen Fan2016-06-031-1/+1
* [SPARK-15740][MLLIB] ignore big model load / save in Word2VecSuiteXiangrui Meng2016-06-021-1/+1
* [SPARK-15668][ML] ml.feature: update check schema to avoid confusion when use...Yuhao Yang2016-06-024-36/+25
* [MINOR] clean up style for storage param setters in ALSNick Pentreath2016-06-021-6/+2
* [SPARK-15587][ML] ML 2.0 QA: Scala APIs audit for ml.featureYanbo Liang2016-06-014-16/+10
* [SPARK-15664][MLLIB] Replace FileSystem.get(conf) with path.getFileSystem(con...Lianhui Wang2016-06-015-20/+31
* [SPARK-15618][SQL][MLLIB] Use SparkSession.builder.sparkContext if applicable.Dongjoon Hyun2016-05-3122-51/+49
* [MINOR] Resolve a number of miscellaneous build warningsSean Owen2016-05-292-1/+5
* [SPARK-15610][ML] update error message for k in pcaZheng RuiFeng2016-05-272-4/+3