aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/ml
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-19348][PYTHON] PySpark keyword_only decorator is not thread-safeBryan Cutler2017-03-039-116/+116
* [SPARK-19734][PYTHON][ML] Correct OneHotEncoder doc string to say dropLastMark Grover2017-03-011-1/+1
* [MINOR][ML] Fix comments in LSH Examples and Python APIYun Ni2017-03-011-1/+1
* [SPARK-14489][ML][PYSPARK] ALS unknown user/item prediction strategyNick Pentreath2017-02-281-5/+25
* [SPARK-14772][PYTHON][ML] Fixed Params.copy method to match Scala implementationBryan Cutler2017-02-232-6/+27
* [SPARK-18080][ML][PYTHON] Python API & Examples for Locality Sensitive HashingYun Ni2017-02-151-0/+291
* [SPARK-19590][PYSPARK][ML] Update the document for QuantileDiscretizer in pys...VinceShieh2017-02-151-1/+11
* [SPARK-19506][ML][PYTHON] Import warnings in pyspark.ml.utilzero3232017-02-131-0/+1
* [SPARK-19467][ML][PYTHON] Remove cyclic imports from pyspark.ml.pipelinezero3232017-02-061-1/+1
* [SPARK-19421][ML][PYSPARK] Remove numClasses and numFeatures methods in Linea...Zheng RuiFeng2017-02-051-16/+0
* [SPARK-19389][ML][PYTHON][DOC] Minor doc fixes for ML Python Params and Linea...Joseph K. Bradley2017-02-022-17/+5
* [SPARK-17161][PYSPARK][ML] Add PySpark-ML JavaWrapper convenience function to...Bryan Cutler2017-01-313-3/+77
* [SPARK-19336][ML][PYSPARK] LinearSVC Python APIwm624@hotmail.com2017-01-273-1/+156
* [SPARK-14272][ML] Add Loglikelihood in GaussianMixtureSummaryZheng RuiFeng2017-01-191-0/+10
* [SPARK-17645][MLLIB][ML][FOLLOW-UP] document minor changePeng, Meng2017-01-101-4/+5
* [SPARK-17847][ML] Reduce shuffled data size of GaussianMixture & copy the imp...Yanbo Liang2017-01-091-18/+8
* [MINOR][DOCS] Remove consecutive duplicated words/typo in Spark RepoNiranjan Padmanabhan2017-01-042-3/+3
* [SPARK-17645][MLLIB][ML] add feature selector method based on: False Discover...Peng2016-12-281-7/+67
* [SPARK-18628][ML] Update Scala param and Python param to have quoteskrishnakalyan32016-12-111-2/+2
* [SPARK-18274][ML][PYSPARK] Memory leak in PySpark JavaWrapperSandeep Singh2016-12-012-18/+41
* [SPARK-18366][PYSPARK][ML] Add handleInvalid to Pyspark for QuantileDiscretiz...Sandeep Singh2016-11-301-14/+71
* [SPARK-15819][PYSPARK][ML] Add KMeanSummary in KMeans of PySparkJeff Zhang2016-11-292-0/+56
* [SPARK-18319][ML][QA2.1] 2.1 QA: API: Experimental, DeveloperApi, final, seal...Yuhao2016-11-294-32/+0
* [SPARK-18481][ML] ML 2.1 QA: Remove deprecated methods for MLYanbo Liang2016-11-261-4/+36
* [SPARK-18447][DOCS] Fix the markdown for `Note:`/`NOTE:`/`Note that` across P...hyukjinkwon2016-11-225-53/+56
* [SPARK-18282][ML][PYSPARK] Add python clustering summaries for GMM and BKMsethah2016-11-214-13/+212
* [SPARK-18239][SPARKR] Gradient Boosted Tree for RFelix Cheung2016-11-081-5/+5
* [SPARK-18177][ML][PYSPARK] Add missing 'subsamplingRate' of pyspark GBTClassi...Zheng RuiFeng2016-11-031-5/+5
* [SPARK-18088][ML] Various ChiSqSelector cleanupsJoseph K. Bradley2016-11-011-18/+19
* [SPARK-18110][PYTHON][ML] add missing parameter in Python for RandomForest re...Felix Cheung2016-10-302-11/+12
* [SPARK-17219][ML] enhanced NaN value handling in BucketizerVinceShieh2016-10-271-5/+0
* [SPARK-17870][MLLIB][ML] Change statistic to pValue for SelectKBest and Selec...Peng2016-10-141-2/+2
* [SPARK-15402][ML][PYSPARK] PySpark ml.evaluation should support save/loadYanbo Liang2016-10-141-9/+36
* [SPARK-15957][FOLLOW-UP][ML][PYSPARK] Add Python API for RFormula forceIndexL...Yanbo Liang2016-10-132-4/+43
* [SPARK-17745][ML][PYSPARK] update NB python api - add weight col parameterWeichenXu2016-10-121-13/+13
* [SPARK-17744][ML] Parity check between the ml and mllib test suites for NBZheng RuiFeng2016-10-041-1/+0
* [SPARK-17587][PYTHON][MLLIB] SparseVector __getitem__ should follow __getitem...zero3232016-10-032-8/+18
* [SPARK-17679] [PYSPARK] remove unnecessary Py4J ListConverter patchJason White2016-10-031-2/+2
* [SPARK-17704][ML][MLLIB] ChiSqSelector performance improvement.Sean Owen2016-10-011-1/+1
* [SPARK-17138][ML][MLIB] Add Python API for multinomial logistic regressionWeichenXu2016-09-271-20/+70
* [SPARK-17017][FOLLOW-UP][ML] Refactor of ChiSqSelector and add ML Python API.Yanbo Liang2016-09-261-6/+65
* [SPARK-17057][ML] ProbabilisticClassifierModels' thresholds should have at mo...Sean Owen2016-09-242-4/+5
* [SPARK-17281][ML][MLLIB] Add treeAggregateDepth parameter for AFTSurvivalRegr...WeichenXu2016-09-221-5/+6
* [SPARK-17219][ML] Add NaN value handling in BucketizerVinceShieh2016-09-211-0/+5
* [SPARK-17389][FOLLOW-UP][ML] Change KMeans k-means|| default init steps from ...Yanbo Liang2016-09-111-5/+5
* [MINOR][ML] Correct weights doc of MultilayerPerceptronClassificationModel.Yanbo Liang2016-09-061-1/+1
* [SPARK-17197][ML][PYSPARK] PySpark LiR/LoR supports tree aggregation level co...Yanbo Liang2016-08-254-11/+42
* [SPARK-15113][PYSPARK][ML] Add missing num features num classesHolden Karau2016-08-223-11/+64
* [SPARK-15018][PYSPARK][ML] Improve handling of PySpark Pipeline when used wit...Bryan Cutler2016-08-192-8/+14
* [SPARK-16965][MLLIB][PYSPARK] Fix bound checking for SparseVector.Jeff Zhang2016-08-191-0/+15