aboutsummaryrefslogtreecommitdiff
path: root/mllib
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-9440] [MLLIB] Add hyperparameters to LocalLDAModel save/loadFeynman Liang2015-07-292-13/+33
* [SPARK-9016] [ML] make random forest classifiers implement classification traitHolden Karau2015-07-292-18/+30
* [SPARK-8921] [MLLIB] Add @since tags to mllib.statBimal Tandel2015-07-295-4/+66
* [SPARK-6793] [MLLIB] OnlineLDAOptimizer LDA perplexityFeynman Liang2015-07-295-104/+348
* [SPARK-7105] [PYSPARK] [MLLIB] Support model save/load in GMMMechCoder2015-07-282-11/+55
* [SPARK-9391] [ML] Support minus, dot, and intercept operators in SparkR RFormulaEric Liang2015-07-284-40/+206
* [SPARK-8919] [DOCUMENTATION, MLLIB] Added @since tags to mllib.recommendationvinodkc2015-07-282-1/+47
* [SPARK-9230] [ML] Support StringType features in RFormulaEric Liang2015-07-273-59/+139
* [SPARK-7423] [MLLIB] Modify ClassificationModel and Probabalistic model to us...George Dittmar2015-07-272-2/+2
* [SPARK-9337] [MLLIB] Add an ut for Word2Vec to verify the empty vocabulary checkYuhao Yang2015-07-261-0/+10
* [SPARK-9350][SQL] Introduce an InternalRow generic getter that requires a Dat...Reynold Xin2015-07-252-6/+11
* [SPARK-7045] [MLLIB] Avoid intermediate representation when creating modelMechCoder2015-07-242-36/+55
* [SPARK-9222] [MLlib] Make class instantiation variables in DistributedLDAMode...MechCoder2015-07-242-4/+19
* [SPARK-9285][SQL] Remove InternalRow's inheritance from Row.Reynold Xin2015-07-242-4/+4
* [SPARK-8092] [ML] Allow OneVsRest Classifier feature and label column names t...Ram Sriharsha2015-07-232-1/+40
* [SPARK-9069] [SPARK-9264] [SQL] remove unlimited precision support for Decima...Davies Liu2015-07-231-1/+1
* [SPARK-7254] [MLLIB] Run PowerIterationClustering directly on graphLiang-Chi Hsieh2015-07-222-0/+94
* [SPARK-9268] [ML] Removed varargs annotation from Params.setDefault taking mu...Joseph K. Bradley2015-07-222-4/+4
* [SPARK-9144] Remove DAGScheduler.runLocallyWithinThread and spark.localExecut...Josh Rosen2015-07-221-1/+1
* [SPARK-9262][build] Treat Scala compiler warnings as errorsReynold Xin2015-07-221-2/+2
* [SPARK-8484] [ML] Added TrainValidationSplit for hyper-parameter tuning.martinzapletal2015-07-224-32/+368
* [SPARK-9244] Increase some memory defaultsMatei Zaharia2015-07-221-1/+1
* [SPARK-8536] [MLLIB] Generalize OnlineLDAOptimizer to asymmetric document-top...Feynman Liang2015-07-223-32/+126
* [SPARK-9224] [MLLIB] OnlineLDA Performance ImprovementsFeynman Liang2015-07-221-32/+27
* [SPARK-5989] [MLLIB] Model save/load for LDAMechCoder2015-07-212-4/+265
* [SPARK-8915] [DOCUMENTATION, MLLIB] Added @since tags to mllib.classificationpetz20002015-07-214-0/+39
* [SPARK-9204][ML] Add default params test for linearyregression suiteHolden Karau2015-07-201-0/+25
* [SPARK-9201] [ML] Initial integration of MLlib + SparkR using RFormulaEric Liang2015-07-203-3/+61
* [SPARK-9175] [MLLIB] BLAS.gemm fails to update matrix C when alpha==0 and bet...Meihua Wu2015-07-202-2/+18
* [SPARK-8996] [MLLIB] [PYSPARK] Python API for Kolmogorov-Smirnov TestMechCoder2015-07-201-1/+13
* [SPARK-7422] [MLLIB] Add argmax to Vector, SparseVectorGeorge Dittmar2015-07-202-5/+91
* [SPARK-9118] [ML] Implement IntArrayParam in mllibRekha Joshi2015-07-171-0/+16
* [SPARK-7879] [MLLIB] KMeans API for spark.ml PipelinesYu ISHIKAWA2015-07-174-3/+400
* [SPARK-7127] [MLLIB] Adding broadcast of model before prediction for ensemblesBryan Cutler2015-07-175-8/+48
* [SPARK-9090] [ML] Fix definition of residual in LinearRegressionSummary, Ense...Feynman Liang2015-07-174-7/+7
* [SPARK-8600] [ML] Naive Bayes API for spark.ml PipelinesYanbo Liang2015-07-175-8/+400
* [SPARK-9062] [ML] Change output type of Tokenizer to Array(String, true)Yuhao Yang2015-07-171-2/+2
* [MINOR] [ML] fix wrong annotation of RFormula.formulaYanbo Liang2015-07-171-1/+1
* [SPARK-9126] [MLLIB] do not assert on time taken by Thread.sleep()Xiangrui Meng2015-07-162-25/+43
* [SPARK-7131] [ML] Copy Decision Tree, Random Forest impl to spark.mlJoseph K. Bradley2015-07-1618-32/+1678
* [SPARK-9018] [MLLIB] add stopwatchesXiangrui Meng2015-07-152-0/+260
* [SPARK-8774] [ML] Add R model formula with basic support as a transformerEric Liang2015-07-154-1/+279
* [SPARK-9005] [MLLIB] Fix RegressionMetrics computation of explainedVarianceFeynman Liang2015-07-152-14/+82
* [SPARK-8997] [MLLIB] Performance improvements in LocalPrefixSpanFeynman Liang2015-07-143-70/+44
* [SPARK-8018] [MLLIB] KMeans should accept initial cluster centers as paramFlytxtRnD2015-07-142-6/+57
* [SPARK-6259] [MLLIB] Python API for LDAYu ISHIKAWA2015-07-141-0/+33
* [SPARK-4362] [MLLIB] Make prediction probability available in NaiveBayesModelSean Owen2015-07-142-18/+113
* [SPARK-8991] [ML] Update SharedParamsCodeGen's Generated DocumentationVinod K C2015-07-132-21/+19
* [SPARK-8994] [ML] tiny cleanups to Params, PipelineJoseph K. Bradley2015-07-102-3/+3
* [SPARK-6487] [MLLIB] Add sequential pattern mining algorithm PrefixSpan to Sp...zhangjiajin2015-07-103-0/+390