aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/ml/feature.py
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-15040][ML][PYSPARK] Add Imputer to PySparkNick Pentreath2017-03-241-0/+160
* [SPARK-19348][PYTHON] PySpark keyword_only decorator is not thread-safeBryan Cutler2017-03-031-60/+60
* [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-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-17645][MLLIB][ML][FOLLOW-UP] document minor changePeng, Meng2017-01-101-4/+5
* [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-18366][PYSPARK][ML] Add handleInvalid to Pyspark for QuantileDiscretiz...Sandeep Singh2016-11-301-14/+71
* [SPARK-18319][ML][QA2.1] 2.1 QA: API: Experimental, DeveloperApi, final, seal...Yuhao2016-11-291-4/+0
* [SPARK-18447][DOCS] Fix the markdown for `Note:`/`NOTE:`/`Note that` across P...hyukjinkwon2016-11-221-6/+7
* [SPARK-18088][ML] Various ChiSqSelector cleanupsJoseph K. Bradley2016-11-011-18/+19
* [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-15957][FOLLOW-UP][ML][PYSPARK] Add Python API for RFormula forceIndexL...Yanbo Liang2016-10-131-4/+27
* [SPARK-17704][ML][MLLIB] ChiSqSelector performance improvement.Sean Owen2016-10-011-1/+1
* [SPARK-17017][FOLLOW-UP][ML] Refactor of ChiSqSelector and add ML Python API.Yanbo Liang2016-09-261-6/+65
* [SPARK-17219][ML] Add NaN value handling in BucketizerVinceShieh2016-09-211-0/+5
* [SPARK-14812][ML][MLLIB][PYTHON] Experimental, DeveloperApi annotation audit ...Joseph K. Bradley2016-07-131-64/+0
* [SPARK-15741][PYSPARK][ML] Pyspark cleanup of set default seed to NoneBryan Cutler2016-06-211-1/+1
* [SPARK-10258][DOC][ML] Add @Since annotations to ml.featureNick Pentreath2016-06-211-5/+5
* [SPARK-15364][ML][PYSPARK] Implement PySpark picklers for ml.Vector and ml.Ma...Liang-Chi Hsieh2016-06-131-1/+1
* [SPARK-15738][PYSPARK][ML] Adding Pyspark ml RFormula __str__ method similar ...Bryan Cutler2016-06-101-0/+12
* [SPARK-15837][ML][PYSPARK] Word2vec python add maxsentence parameterWeichenXu2016-06-101-5/+24
* [SPARK-15788][PYSPARK][ML] PySpark IDFModel missing "idf" propertyJeff Zhang2016-06-091-0/+10
* [SPARK-15587][ML] ML 2.0 QA: Scala APIs audit for ml.featureYanbo Liang2016-06-011-16/+13
* [SPARK-15442][ML][PYSPARK] Add 'relativeError' param to PySpark QuantileDiscr...Nick Pentreath2016-05-241-15/+36
* [SPARK-15464][ML][MLLIB][SQL][TESTS] Replace SQLContext and SparkContext with...WeichenXu2016-05-231-32/+34
* [DOC][MINOR] ml.feature Scala and Python API syncBryan Cutler2016-05-191-13/+26
* [SPARK-14615][ML] Use the new ML Vector and Matrix in the ML pipeline based a...DB Tsai2016-05-171-13/+13
* [SPARK-15136][PYSPARK][DOC] Fix links to sphinx style and add a default param...Holden Karau2016-05-091-7/+6
* [SPARK-14050][ML] Add multiple languages support and additional methods for S...Burak Köse2016-05-061-16/+22
* [SPARK-14971][ML][PYSPARK] PySpark ML Params setter code clean upYanbo Liang2016-05-031-74/+37
* [SPARK-14931][ML][PYTHON] Mismatched default values between pipelines in Spar...Xusen Yin2016-05-011-0/+1
* [SPARK-13289][MLLIB] Fix infinite distances between word vectors in Word2VecM...Junyang2016-04-301-7/+8
* [SPARK-14899][ML][PYSPARK] Remove spark.ml HashingTF hashingAlg optionYanbo Liang2016-04-271-30/+11
* [SPARK-10574][ML][MLLIB] HashingTF supports MurmurHash3Yanbo Liang2016-04-251-8/+31
* [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-201-2/+2
* [SPARK-14714][ML][PYTHON] Fixed issues with non-kwarg typeConverter arg for P...Joseph K. Bradley2016-04-181-7/+10
* [SPARK-14564][ML][MLLIB][PYSPARK] Python Word2Vec missing setWindowSize methodJason Lee2016-04-181-5/+23
* [SPARK-14104][PYSPARK][ML] All Python param setters should use the `_set` methodsethah2016-04-151-35/+37
* [SPARK-14665][ML][PYTHON] Fixed bug with StopWordsRemover default stopwordsJoseph K. Bradley2016-04-151-1/+1
* [SPARK-14238][ML][MLLIB][PYSPARK] Add binary toggle Param to PySpark HashingT...Yong Tang2016-04-141-2/+22
* [SPARK-13967][PYSPARK][ML] Added binary Param to Python CountVectorizerBryan Cutler2016-04-141-5/+29
* [SPARK-13068][PYSPARK][ML] Type conversion for Pyspark paramssethah2016-03-231-40/+55
* [SPARK-13951][ML][PYTHON] Nested Pipeline persistenceJoseph K. Bradley2016-03-221-43/+46
* [SPARK-13993][PYSPARK] Add pyspark Rformula/RforumlaModel save/loadXusen Yin2016-03-201-3/+27
* [SPARK-13036][SPARK-13318][SPARK-13319] Add save/load for feature.pyXusen Yin2016-03-041-45/+296