aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main/scala/org/apache/spark/ml/feature
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-19969][ML] Imputer doc and exampleYuhao Yang2017-04-031-1/+1
* [SPARK-19985][ML] Fixed copy method for some ML ModelsBryan Cutler2017-04-033-4/+12
* [SPARK-15040][ML][PYSPARK] Add Imputer to PySparkNick Pentreath2017-03-241-5/+5
* [SPARK-20041][DOC] Update docs for NaN handling in approxQuantileZheng RuiFeng2017-03-211-2/+2
* [SPARK-13568][ML] Create feature transformer to impute missing valuesYuhao Yang2017-03-161-0/+259
* [SPARK-11569][ML] Fix StringIndexer to handle null value properlyMenglong TAN2017-03-141-22/+32
* [SPARK-17629][ML] methods to return synonyms directlyAsher Krim2017-03-071-6/+31
* [SPARK-17498][ML] StringIndexer enhancement for handling unseen labelsVinceShieh2017-03-071-16/+49
* [SPARK-18080][ML][PYTHON] Python API & Examples for Locality Sensitive HashingYun Ni2017-02-151-3/+4
* [SPARK-19247][ML] Save large word2vec modelsAsher Krim2017-02-051-10/+46
* [SPARK-19402][DOCS] Support LaTex inline formula correctly and fix warnings i...hyukjinkwon2017-02-012-4/+4
* [SPARK-17645][MLLIB][ML][FOLLOW-UP] document minor changePeng, Meng2017-01-101-3/+3
* [SPARK-18698][ML] Adding public constructor that takes uid for IndexToStringIlya Matiach2016-12-291-1/+1
* [SPARK-17645][MLLIB][ML] add feature selector method based on: False Discover...Peng2016-12-281-2/+46
* [SPARK-18628][ML] Update Scala param and Python param to have quoteskrishnakalyan32016-12-112-6/+6
* [SPARK-18318][ML] ML, Graph 2.1 QA: API: New Scala APIs, docsYanbo Liang2016-11-303-7/+13
* [SPARK-18319][ML][QA2.1] 2.1 QA: API: Experimental, DeveloperApi, final, seal...Yuhao2016-11-292-8/+2
* [SPARK-3359][DOCS] Make javadoc8 working for unidoc/genjavadoc compatibility ...hyukjinkwon2016-11-2916-33/+38
* [SPARK-18408][ML] API Improvements for LSHYun Ni2016-11-283-150/+177
* [SPARK-18481][ML] ML 2.1 QA: Remove deprecated methods for MLYanbo Liang2016-11-261-7/+0
* [SPARK-3359][BUILD][DOCS] More changes to resolve javadoc 8 errors that will ...hyukjinkwon2016-11-258-18/+24
* [SPARK-18445][BUILD][DOCS] Fix the markdown for `Note:`/`NOTE:`/`Note that`/`...hyukjinkwon2016-11-195-8/+14
* [SPARK-18480][DOCS] Fix wrong links for ML guide docsZheng RuiFeng2016-11-171-1/+1
* [SPARK-17462][MLLIB]use VersionUtils to parse Spark version stringsVinceShieh2016-11-171-4/+2
* [SPARK-18434][ML] Add missing ParamValidations for ML algosZheng RuiFeng2016-11-163-7/+12
* [SPARK-18088][ML] Various ChiSqSelector cleanupsJoseph K. Bradley2016-11-011-24/+35
* [SPARK-5992][ML] Locality Sensitive HashingYunni2016-10-283-0/+732
* [SPARK-17219][ML] enhanced NaN value handling in BucketizerVinceShieh2016-10-272-14/+104
* [SPARK-17986][ML] SQLTransformer should remove temporary tablesDrew Robb2016-10-221-1/+3
* [SPARK-15957][ML] RFormula supports forcing to index labelYanbo Liang2016-10-101-3/+26
* [SPARK-17744][ML] Parity check between the ml and mllib test suites for NBZheng RuiFeng2016-10-042-2/+2
* [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-40/+46
* [SPARK-10835][ML] Word2Vec should accept non-null string array, in addition t...Sean Owen2016-09-241-1/+2
* [SPARK-17219][ML] Add NaN value handling in BucketizerVinceShieh2016-09-212-6/+16
* [SPARK-17017][MLLIB][ML] add a chiSquare Selector based on False Positive Rat...Peng, Meng2016-09-211-3/+66
* [SPARK-17548][MLLIB] Word2VecModel.findSynonyms no longer spuriously rejects ...William Benton2016-09-171-9/+11
* [SPARK-17331][CORE][MLLIB] Avoid allocating 0-length arraysSean Owen2016-09-011-2/+2
* [MINOR][MLLIB][SQL] Clean up unused variables and unused importXin Ren2016-08-301-1/+1
* [SPARK-17001][ML] Enable standardScaler to standardize sparse vectors when wi...Sean Owen2016-08-271-2/+1
* [SPARK-17086][ML] Fix InvalidArgumentException issue in QuantileDiscretizer w...VinceShieh2016-08-241-1/+6
* [SPARK-17095] [Documentation] [Latex and Scala doc do not play nicely]Jagadeesan2016-08-231-3/+5
* [SPARK-17141][ML] MinMaxScaler should remain NaN value.Yanbo Liang2016-08-191-2/+4
* [SPARK-17027][ML] Avoid integer overflow in PolynomialExpansion.getPolySizezero3232016-08-141-4/+6
* [SPARK-16750][FOLLOW-UP][ML] Add transformSchema for StringIndexer/VectorAsse...Yanbo Liang2016-08-052-1/+4
* [SPARK-16822][DOC] Support latex in scaladoc.Shuai Lin2016-08-021-3/+7
* [SPARK-16750][ML] Fix GaussianMixture training failed due to feature column t...Yanbo Liang2016-07-295-1/+6
* [SPARK-3359][DOCS] More changes to resolve javadoc 8 errors that will help un...Sean Owen2016-07-161-2/+2
* [SPARK-16485][ML][DOC] Fix privacy of GLM members, rename sqlDataTypes for ML...Joseph K. Bradley2016-07-131-2/+2
* [SPARK-14812][ML][MLLIB][PYTHON] Experimental, DeveloperApi annotation audit ...Joseph K. Bradley2016-07-1326-98/+28