aboutsummaryrefslogtreecommitdiff
path: root/mllib
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-14844][ML] Add setFeaturesCol and setPredictionCol to KMeansM…Dominik Jastrzębski2016-05-042-0/+23
* [SPARK-14237][SQL] De-duplicate partition value appending logic in various bu...Cheng Lian2016-05-041-16/+1
* [SPARK-14973][ML] The CrossValidator and TrainValidationSplit miss the seed w...yinxusen2016-05-035-18/+30
* [SPARK-6717][ML] Clear shuffle files after checkpointing in ALSHolden Karau2016-05-032-44/+194
* [SPARK-14931][ML][PYTHON] Mismatched default values between pipelines in Spar...Xusen Yin2016-05-016-28/+34
* [SPARK-15030][ML][SPARKR] Support formula in spark.kmeans in SparkRYanbo Liang2016-04-306-20/+50
* [SPARK-14952][CORE][ML] Remove methods that were deprecated in 1.6.0Herman van Hovell2016-04-302-6/+0
* [SPARK-14653][ML] Remove json4s from mllib-localXiangrui Meng2016-04-302-0/+103
* [SPARK-13289][MLLIB] Fix infinite distances between word vectors in Word2VecM...Junyang2016-04-302-10/+29
* [SPARK-14412][.2][ML] rename *RDDStorageLevel to *StorageLevel in ml.ALSXiangrui Meng2016-04-302-22/+22
* [SPARK-14533][MLLIB] RowMatrix.computeCovariance inaccurate when values are v...Sean Owen2016-04-304-27/+26
* [SPARK-14850][.2][ML] use UnsafeArrayData.fromPrimitiveArray in ml.VectorUDT/...Xiangrui Meng2016-04-292-11/+9
* [SPARK-14850][ML] convert primitive array from/to unsafe array directly in Ve...Wenchen Fan2016-04-293-11/+79
* [SPARK-14412][ML][PYSPARK] Add StorageLevel params to ALSNick Pentreath2016-04-292-6/+129
* [SPARK-14646][ML] Modified Kmeans to store cluster centers with one per rowJoseph K. Bradley2016-04-291-6/+13
* [SPARK-14570][ML] Log instrumentation in Random forestsBenFradet2016-04-298-33/+81
* [SPARK-11940][PYSPARK][ML] Python API for ml.clustering.LDA PR2Jeff Zhang2016-04-291-4/+3
* [SPARK-14984][ML] Deprecated model field in LinearRegressionSummaryJoseph K. Bradley2016-04-292-4/+5
* [SPARK-14314][SPARK-14315][ML][SPARKR] Model persistence in SparkR (glm & kme...Yanbo Liang2016-04-295-64/+188
* [SPARK-14571][ML] Log instrumentation in ALSwm624@hotmail.com2016-04-292-0/+12
* [SPARK-14969][MLLIB] Remove duplicate implementation of compute in LogisticGr...dding32016-04-292-13/+0
* [SPARK-14886][MLLIB] RankingMetrics.ndcgAt throw java.lang.ArrayIndexOutOfBou...Sean Owen2016-04-292-6/+22
* [SPARK-14829][MLLIB] Deprecate GLM APIs using SGDZheng RuiFeng2016-04-284-0/+12
* Revert "[SPARK-14613][ML] Add @Since into the matrix and vector classes in sp...Yin Huai2016-04-281-1/+1
* [SPARK-14862][ML] Updated Classifiers to not require labelCol metadataJoseph K. Bradley2016-04-288-31/+245
* [SPARK-14613][ML] Add @Since into the matrix and vector classes in spark-mlli...Pravin Gadakh2016-04-281-1/+1
* [SPARK-14916][MLLIB] A more friendly tostring for FreqItemset in mllib.fpmYuhao Yang2016-04-281-0/+4
* [SPARK-14852][ML] refactored GLM summary into training, non-training summariesJoseph K. Bradley2016-04-282-55/+115
* [SPARK-14487][SQL] User Defined Type registration without SQLUserDefinedType ...Liang-Chi Hsieh2016-04-284-0/+289
* [SPARK-14671][ML] Pipeline setStages should handle subclasses of PipelineStageJoseph K. Bradley2016-04-272-2/+12
* [SPARK-14899][ML][PYSPARK] Remove spark.ml HashingTF hashingAlg optionYanbo Liang2016-04-273-55/+22
* [SPARK-9656][MLLIB][PYTHON] Add missing methods to PySpark's Distributed Line...Mike Dusenberry2016-04-271-1/+2
* [SPARK-14732][ML] spark.ml GaussianMixture should use MultivariateGaussian in...Joseph K. Bradley2016-04-262-37/+75
* [SPARK-12301][ML] Made all tree and ensemble classes not finalJoseph K. Bradley2016-04-268-16/+16
* [SPARK-14907][MLLIB] Use repartition in GLMRegressionModel.saveDongjoon Hyun2016-04-261-4/+1
* [SPARK-11559][MLLIB] Make `runs` no effect in mllib.KMeansYanbo Liang2016-04-262-32/+11
* [MINOR] Follow-up to #12625Andrew Or2016-04-261-4/+4
* [SPARK-14912][SQL] Propagate data source options to Hadoop configurationReynold Xin2016-04-261-5/+5
* [SPARK-14313][ML][SPARKR] AFTSurvivalRegression model persistence in SparkRYanbo Liang2016-04-262-3/+51
* [SPARK-13962][ML] spark.ml Evaluators should support other numeric types for ...BenFradet2016-04-268-51/+88
* [SPARK-14861][SQL] Replace internal usages of SQLContext with SparkSessionAndrew Or2016-04-2514-51/+52
* [SPARK-14312][ML][SPARKR] NaiveBayes model persistence in SparkRYanbo Liang2016-04-252-3/+94
* [SPARK-10574][ML][MLLIB] HashingTF supports MurmurHash3Yanbo Liang2016-04-253-21/+129
* [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-243-7/+7
* [MINOR][ML][MLLIB] Remove unused importsZheng RuiFeng2016-04-2213-16/+11
* [SPARK-14843][ML] Fix encoding error in LibSVMRelationLiang-Chi Hsieh2016-04-232-5/+13
* [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