aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-9929] [SQL] support metadata in withColumnWenchen Fan2015-08-144-7/+6
* [SPARK-8744] [ML] Add a public constructor to StringIndexerHolden Karau2015-08-141-1/+3
* [SPARK-9956] [ML] Make trees work with one-category featuresJoseph K. Bradley2015-08-141-10/+17
* [SPARK-9661] [MLLIB] minor clean-up of SPARK-9661Xiangrui Meng2015-08-142-7/+4
* [SPARK-9922] [ML] rename StringIndexerReverse to IndexToStringXiangrui Meng2015-08-131-21/+13
* [SPARK-9661] [MLLIB] [ML] Java compatibilityMechCoder2015-08-132-3/+40
* [MINOR] [ML] change MultilayerPerceptronClassifierModel to MultilayerPerceptr...Yanbo Liang2015-08-131-8/+8
* [SPARK-9073] [ML] spark.ml Models copy() should call setParent when there is ...lewuathe2015-08-1320-18/+22
* [SPARK-9918] [MLLIB] remove runs from k-means and rename epsilon to tolXiangrui Meng2015-08-121-41/+10
* [SPARK-9914] [ML] define setters explicitly for Java and use setParam group i...Xiangrui Meng2015-08-121-5/+6
* [SPARK-8922] [DOCUMENTATION, MLLIB] Add @since tags to mllib.evaluationshikai.tang2015-08-125-5/+50
* [SPARK-9917] [ML] add getMin/getMax and doc for originalMin/origianlMax in Mi...Xiangrui Meng2015-08-121-1/+9
* [SPARK-9903] [MLLIB] skip local processing in PrefixSpan if there are no smal...Xiangrui Meng2015-08-121-16/+21
* [SPARK-9704] [ML] Made ProbabilisticClassifier, Identifiable, VectorUDT publi...Joseph K. Bradley2015-08-123-10/+20
* [SPARK-9915] [ML] stopWords should use StringArrayParamXiangrui Meng2015-08-121-3/+3
* [SPARK-9912] [MLLIB] QRDecomposition should use QType and RType for type name...Xiangrui Meng2015-08-121-1/+1
* [SPARK-9909] [ML] [TRIVIAL] move weightCol to shared paramsHolden Karau2015-08-123-15/+20
* [SPARK-9913] [MLLIB] LDAUtils should be privateXiangrui Meng2015-08-121-1/+1
* [SPARK-9789] [ML] Added logreg threshold param backJoseph K. Bradley2015-08-123-27/+110
* [SPARK-9847] [ML] Modified copyValues to distinguish between default, explici...Joseph K. Bradley2015-08-121-3/+16
* [HOTFIX] Fix style error caused by 017b5deAndrew Or2015-08-111-1/+1
* [SPARK-8925] [MLLIB] Add @since tags to mllib.utilSudhakar Thota2015-08-111-1/+21
* [SPARK-9788] [MLLIB] Fix LDA Binary CompatibilityFeynman Liang2015-08-113-22/+44
* [SPARK-9750] [MLLIB] Improve equals on SparseMatrix and DenseMatrixFeynman Liang2015-08-111-2/+6
* [SPARK-8764] [ML] string indexer should take option to handle unseen valuesHolden Karau2015-08-113-4/+41
* [SPARK-8345] [ML] Add an SQL node as a feature transformerYanbo Liang2015-08-111-0/+72
* [SPARK-9755] [MLLIB] Add docs to MultivariateOnlineSummarizer methodsFeynman Liang2015-08-101-0/+16
* [SPARK-9719] [ML] Clean up Naive Bayes docFeynman Liang2015-08-071-0/+4
* [SPARK-9756] [ML] Make constructors in ML decision trees privateFeynman Liang2015-08-074-4/+7
* [SPARK-9748] [MLLIB] Centriod typo in KMeansModelBertrand Dechoux2015-08-071-5/+5
* [SPARK-8481] [MLLIB] GaussianMixtureModel predict accepting single vectorDariusz Kobylarz2015-08-071-0/+13
* [SPARK-9493] [ML] add featureIndex to handle vector features in IsotonicRegre...Xiangrui Meng2015-08-061-56/+146
* [SPARK-9533] [PYSPARK] [ML] Add missing methods in Word2Vec MLMechCoder2015-08-061-1/+1
* [SPARK-9112] [ML] Implement Stats for LogisticRegressionMechCoder2015-08-061-2/+164
* [SPARK-5895] [ML] Add VectorSlicer - updatedXusen Yin2015-08-053-0/+211
* [SPARK-9657] Fix return type of getMaxPatternLengthFeynman Liang2015-08-051-1/+1
* [SPARK-6486] [MLLIB] [PYTHON] Add BlockMatrix to PySpark.Mike Dusenberry2015-08-051-0/+25
* [SPARK-9540] [MLLIB] optimize PrefixSpan implementationXiangrui Meng2015-08-042-263/+456
* [SPARK-8601] [ML] Add an option to disable standardization for linear regressionHolden Karau2015-08-042-13/+63
* [SPARK-9609] [MLLIB] Fix spelling of Strategy.defaultStrategyFeynman Liang2015-08-043-4/+8
* [SPARK-9586] [ML] Update BinaryClassificationEvaluator to use setRawPredictio...Joseph K. Bradley2015-08-041-1/+8
* [SPARK-6485] [MLLIB] [PYTHON] Add CoordinateMatrix/RowMatrix/IndexedRowMatrix...Mike Dusenberry2015-08-041-1/+52
* [SPARK-9582] [ML] LDA cleanupsJoseph K. Bradley2015-08-042-43/+58
* [SPARK-8069] [ML] Add multiclass thresholds for ProbabilisticClassifierHolden Karau2015-08-046-20/+110
* [SPARK-8874] [ML] Add missing methods in Word2VecMechCoder2015-08-031-1/+37
* [SPARK-9544] [MLLIB] add Python API for RFormulaXiangrui Meng2015-08-031-14/+7
* [SPARK-5133] [ML] Added featureImportance to RandomForestClassifier and Regre...Joseph K. Bradley2015-08-035-14/+166
* [SPARK-9528] [ML] Changed RandomForestClassifier to extend ProbabilisticClass...Joseph K. Bradley2015-08-033-19/+53
* [SPARK-9527] [MLLIB] add PrefixSpanModel and make PrefixSpan Java friendlyXiangrui Meng2015-08-021-5/+47
* [SPARK-9000] [MLLIB] Support generic item types in PrefixSpanFeynman Liang2015-08-011-5/+35