aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/ml
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-14971][ML][PYSPARK] PySpark ML Params setter code clean upYanbo Liang2016-05-0310-219/+110
* [SPARK-14931][ML][PYTHON] Mismatched default values between pipelines in Spar...Xusen Yin2016-05-015-12/+62
* [SPARK-14952][CORE][ML] Remove methods that were deprecated in 1.6.0Herman van Hovell2016-04-302-19/+0
* [SPARK-13289][MLLIB] Fix infinite distances between word vectors in Word2VecM...Junyang2016-04-301-7/+8
* [SPARK-14412][.2][ML] rename *RDDStorageLevel to *StorageLevel in ml.ALSXiangrui Meng2016-04-302-40/+40
* [SPARK-14412][ML][PYSPARK] Add StorageLevel params to ALSNick Pentreath2016-04-292-5/+80
* [SPARK-13786][ML][PYTHON] Removed save/load for python tuningJoseph K. Bradley2016-04-292-262/+21
* [SPARK-11940][PYSPARK][ML] Python API for ml.clustering.LDA PR2Jeff Zhang2016-04-292-2/+543
* [SPARK-12810][PYSPARK] PySpark CrossValidatorModel should support avgMetricsKai Jiang2016-04-282-8/+37
* [SPARK-14899][ML][PYSPARK] Remove spark.ml HashingTF hashingAlg optionYanbo Liang2016-04-272-36/+14
* [SPARK-14732][ML] spark.ml GaussianMixture should use MultivariateGaussian in...Joseph K. Bradley2016-04-261-7/+4
* [SPARK-14903][SPARK-14071][ML][PYTHON] Revert : MLWritable.write propertyJoseph K. Bradley2016-04-262-8/+1
* [SPARK-11559][MLLIB] Make `runs` no effect in mllib.KMeansYanbo Liang2016-04-261-3/+2
* [SPARK-10574][ML][MLLIB] HashingTF supports MurmurHash3Yanbo Liang2016-04-252-9/+33
* [MINOR][ML][PYTHON][DOC] Remove use of JavaMLWriter/Reader in public Python A...Joseph K. Bradley2016-04-251-4/+4
* [SPARK-14433][PYSPARK][ML] PySpark ml GaussianMixturewm624@hotmail.com2016-04-251-1/+145
* [SPARK-14768][ML][PYSPARK] removed expectedType from Param __init__()Jason Lee2016-04-251-8/+1
* [MINOR][ML][PYSPARK] Fix omissive params which should use TypeConverterYanbo Liang2016-04-202-4/+5
* [MINOR][ML][PYSPARK] Fix omissive param setters which should use _set methodYanbo Liang2016-04-201-2/+2
* [SPARK-14555] First cut of Python API for Structured StreamingBurak Yavuz2016-04-2010-28/+12
* [SPARK-14714][ML][PYTHON] Fixed issues with non-kwarg typeConverter arg for P...Joseph K. Bradley2016-04-183-13/+19
* [SPARK-14440][PYSPARK] Remove pipeline specific reader and writerXusen Yin2016-04-181-46/+7
* [SPARK-14564][ML][MLLIB][PYSPARK] Python Word2Vec missing setWindowSize methodJason Lee2016-04-182-5/+28
* [SPARK-14306][ML][PYSPARK] PySpark ml.classification OneVsRest support export...Xusen Yin2016-04-182-23/+144
* [SPARK-14605][ML][PYTHON] Changed Python to use unicode UIDs for spark.ml Ide...Joseph K. Bradley2016-04-164-4/+8
* [SPARK-7861][ML] PySpark OneVsRestXusen Yin2016-04-152-7/+249
* [SPARK-14104][PYSPARK][ML] All Python param setters should use the `_set` methodsethah2016-04-1512-91/+110
* [SPARK-14665][ML][PYTHON] Fixed bug with StopWordsRemover default stopwordsJoseph K. Bradley2016-04-152-1/+4
* [SPARK-14374][ML][PYSPARK] PySpark ml GBTClassifier, Regressor support export...Yanbo Liang2016-04-142-4/+30
* [SPARK-14238][ML][MLLIB][PYSPARK] Add binary toggle Param to PySpark HashingT...Yong Tang2016-04-142-2/+41
* [SPARK-13967][PYSPARK][ML] Added binary Param to Python CountVectorizerBryan Cutler2016-04-142-5/+45
* [SPARK-14573][PYSPARK][BUILD] Fix PyDoc Makefile & highlighting issuesHolden Karau2016-04-141-1/+1
* [SPARK-14472][PYSPARK][ML] Cleanup ML JavaWrapper and related class hierarchyBryan Cutler2016-04-138-70/+62
* [SPARK-13597][PYSPARK][ML] Python API for GeneralizedLinearRegressionKai Jiang2016-04-121-0/+145
* [SPARK-14498][ML][PYTHON][SQL] Many cleanups to ML and ML-related docsJoseph K. Bradley2016-04-084-2/+13
* [SPARK-12569][PYSPARK][ML] DecisionTreeRegressor: provide variance of predict...wm624@hotmail.com2016-04-083-7/+35
* [SPARK-14373][PYSPARK] PySpark RandomForestClassifier, Regressor support expo...Kai Jiang2016-04-082-4/+26
* [SPARK-13430][PYSPARK][ML] Python API for training summaries of linear and lo...Bryan Cutler2016-04-064-18/+562
* [SPARK-13786][ML][PYSPARK] Add save/load for pyspark.ml.tuningXusen Yin2016-04-063-111/+375
* [SPARK-14305][ML][PYSPARK] PySpark ml.clustering BisectingKMeans support expo...Yanbo Liang2016-04-011-2/+15
* [SPARK-11262][ML] Unit test for gradient, loss layers, memory management for ...Alexander Ulanov2016-03-311-1/+1
* [SPARK-14264][PYSPARK][ML] Add feature importance for GBTs in pysparksethah2016-03-312-20/+46
* [SPARK-14152][ML][PYSPARK] MultilayerPerceptronClassifier supports save/load ...Yanbo Liang2016-03-301-2/+14
* [SPARK-14071][PYSPARK][ML] Change MLWritable.write to be a propertywm624@hotmail.com2016-03-282-1/+8
* [SPARK-13949][ML][PYTHON] PySpark ml DecisionTreeClassifier, Regressor suppor...GayathriMurali2016-03-243-6/+66
* [SPARK-14107][PYSPARK][ML] Add seed as named argument to GBTs in pysparksethah2016-03-242-12/+13
* [SPARK-12183][ML][MLLIB] Remove mllib tree implementation, and wrap spark.ml oneJoseph K. Bradley2016-03-232-2/+3
* [SPARK-13068][PYSPARK][ML] Type conversion for Pyspark paramssethah2016-03-2310-176/+421
* [SPARK-13951][ML][PYTHON] Nested Pipeline persistenceJoseph K. Bradley2016-03-229-175/+300
* [SPARK-13993][PYSPARK] Add pyspark Rformula/RforumlaModel save/loadXusen Yin2016-03-201-3/+27