Class LogisticRegressionModel
- All Implemented Interfaces:
- Serializable,- org.apache.spark.internal.Logging,- ClassifierParams,- LogisticRegressionParams,- ProbabilisticClassifierParams,- Params,- HasAggregationDepth,- HasElasticNetParam,- HasFeaturesCol,- HasFitIntercept,- HasLabelCol,- HasMaxBlockSizeInMB,- HasMaxIter,- HasPredictionCol,- HasProbabilityCol,- HasRawPredictionCol,- HasRegParam,- HasStandardization,- HasThreshold,- HasThresholds,- HasTol,- HasWeightCol,- PredictorParams,- HasTrainingSummary<LogisticRegressionTrainingSummary>,- Identifiable,- MLWritable
LogisticRegression.- See Also:
- 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from interface org.apache.spark.internal.Loggingorg.apache.spark.internal.Logging.LogStringContext, org.apache.spark.internal.Logging.SparkShellLoggingFilter
- 
Method SummaryModifier and TypeMethodDescriptionfinal IntParamParam for suggested depth for treeAggregate (>= 2).Gets summary of model on training set.A vector of model coefficients for "binomial" logistic regression.Creates a copy of this instance with the same UID and some extra params.final DoubleParamParam for the ElasticNet mixing parameter, in range [0, 1].Evaluates the model on a test dataset.family()Param for the name of family which is a description of the label distribution to be used in the model.final BooleanParamParam for whether to fit an intercept term.doubleGet threshold for binary classification.double[]Get thresholds for binary or multiclass classification.doubleThe model intercept for "binomial" logistic regression.static LogisticRegressionModelThe lower bounds on coefficients if fitting under bound constrained optimization.The lower bounds on intercepts if fitting under bound constrained optimization.final DoubleParamParam for Maximum memory in MB for stacking input data into blocks.final IntParammaxIter()Param for maximum number of iterations (>= 0).intNumber of classes (values which the label can take).intReturns the number of features the model was trained on.doublePredict label for the given feature vector.predictRaw(Vector features) Raw prediction for each possible label.static MLReader<LogisticRegressionModel>read()final DoubleParamregParam()Param for regularization parameter (>= 0).setThreshold(double value) Set threshold in binary classification, in range [0, 1].setThresholds(double[] value) Set thresholds in multiclass (or binary) classification to adjust the probability of predicting each class.final BooleanParamParam for whether to standardize the training features before fitting the model.summary()Gets summary of model on training set.Param for threshold in binary classification prediction, in range [0, 1].final DoubleParamtol()Param for the convergence tolerance for iterative algorithms (>= 0).toString()uid()An immutable unique ID for the object and its derivatives.The upper bounds on coefficients if fitting under bound constrained optimization.The upper bounds on intercepts if fitting under bound constrained optimization.Param for weight column name.write()Returns aMLWriterinstance for this ML instance.Methods inherited from class org.apache.spark.ml.classification.ProbabilisticClassificationModelnormalizeToProbabilitiesInPlace, predictProbability, probabilityCol, setProbabilityCol, thresholds, transform, transformSchemaMethods inherited from class org.apache.spark.ml.classification.ClassificationModelrawPredictionCol, setRawPredictionCol, transformImplMethods inherited from class org.apache.spark.ml.PredictionModelfeaturesCol, labelCol, predictionCol, setFeaturesCol, setPredictionColMethods inherited from class org.apache.spark.ml.Transformertransform, transform, transformMethods inherited from class org.apache.spark.ml.PipelineStageparamsMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.spark.ml.param.shared.HasAggregationDepthgetAggregationDepthMethods inherited from interface org.apache.spark.ml.param.shared.HasElasticNetParamgetElasticNetParamMethods inherited from interface org.apache.spark.ml.param.shared.HasFeaturesColfeaturesCol, getFeaturesColMethods inherited from interface org.apache.spark.ml.param.shared.HasFitInterceptgetFitInterceptMethods inherited from interface org.apache.spark.ml.param.shared.HasLabelColgetLabelCol, labelColMethods inherited from interface org.apache.spark.ml.param.shared.HasMaxBlockSizeInMBgetMaxBlockSizeInMBMethods inherited from interface org.apache.spark.ml.param.shared.HasMaxItergetMaxIterMethods inherited from interface org.apache.spark.ml.param.shared.HasPredictionColgetPredictionCol, predictionColMethods inherited from interface org.apache.spark.ml.param.shared.HasProbabilityColgetProbabilityCol, probabilityColMethods inherited from interface org.apache.spark.ml.param.shared.HasRawPredictionColgetRawPredictionCol, rawPredictionColMethods inherited from interface org.apache.spark.ml.param.shared.HasRegParamgetRegParamMethods inherited from interface org.apache.spark.ml.param.shared.HasStandardizationgetStandardizationMethods inherited from interface org.apache.spark.ml.param.shared.HasThresholdsthresholdsMethods inherited from interface org.apache.spark.ml.util.HasTrainingSummaryhasSummary, setSummaryMethods inherited from interface org.apache.spark.ml.param.shared.HasWeightColgetWeightColMethods inherited from interface org.apache.spark.internal.LogginginitializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logBasedOnLevel, logDebug, logDebug, logDebug, logDebug, logError, logError, logError, logError, logInfo, logInfo, logInfo, logInfo, logName, LogStringContext, logTrace, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, logWarning, MDC, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq, withLogContextMethods inherited from interface org.apache.spark.ml.classification.LogisticRegressionParamscheckThresholdConsistency, getFamily, getLowerBoundsOnCoefficients, getLowerBoundsOnIntercepts, getUpperBoundsOnCoefficients, getUpperBoundsOnIntercepts, usingBoundConstrainedOptimization, validateAndTransformSchemaMethods inherited from interface org.apache.spark.ml.util.MLWritablesaveMethods inherited from interface org.apache.spark.ml.param.Paramsclear, copyValues, defaultCopy, defaultParamMap, estimateMatadataSize, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
- 
Method Details- 
read
- 
load
- 
familyDescription copied from interface:LogisticRegressionParamsParam for the name of family which is a description of the label distribution to be used in the model. Supported options: - "auto": Automatically select the family based on the number of classes: If numClasses == 1 || numClasses == 2, set to "binomial". Else, set to "multinomial" - "binomial": Binary logistic regression with pivoting. - "multinomial": Multinomial logistic (softmax) regression without pivoting. Default is "auto".- Specified by:
- familyin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
lowerBoundsOnCoefficientsDescription copied from interface:LogisticRegressionParamsThe lower bounds on coefficients if fitting under bound constrained optimization. The bound matrix must be compatible with the shape (1, number of features) for binomial regression, or (number of classes, number of features) for multinomial regression. Otherwise, it throws exception. Default is none.- Specified by:
- lowerBoundsOnCoefficientsin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
upperBoundsOnCoefficientsDescription copied from interface:LogisticRegressionParamsThe upper bounds on coefficients if fitting under bound constrained optimization. The bound matrix must be compatible with the shape (1, number of features) for binomial regression, or (number of classes, number of features) for multinomial regression. Otherwise, it throws exception. Default is none.- Specified by:
- upperBoundsOnCoefficientsin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
lowerBoundsOnInterceptsDescription copied from interface:LogisticRegressionParamsThe lower bounds on intercepts if fitting under bound constrained optimization. The bounds vector size must be equal to 1 for binomial regression, or the number of classes for multinomial regression. Otherwise, it throws exception. Default is none.- Specified by:
- lowerBoundsOnInterceptsin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
upperBoundsOnInterceptsDescription copied from interface:LogisticRegressionParamsThe upper bounds on intercepts if fitting under bound constrained optimization. The bound vector size must be equal to 1 for binomial regression, or the number of classes for multinomial regression. Otherwise, it throws exception. Default is none.- Specified by:
- upperBoundsOnInterceptsin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
maxBlockSizeInMBDescription copied from interface:HasMaxBlockSizeInMBParam for Maximum memory in MB for stacking input data into blocks. Data is stacked within partitions. If more than remaining data size in a partition then it is adjusted to the data size. Default 0.0 represents choosing optimal value, depends on specific algorithm. Must be >= 0..- Specified by:
- maxBlockSizeInMBin interface- HasMaxBlockSizeInMB
- Returns:
- (undocumented)
 
- 
aggregationDepthDescription copied from interface:HasAggregationDepthParam for suggested depth for treeAggregate (>= 2).- Specified by:
- aggregationDepthin interface- HasAggregationDepth
- Returns:
- (undocumented)
 
- 
thresholdDescription copied from interface:HasThresholdParam for threshold in binary classification prediction, in range [0, 1].- Specified by:
- thresholdin interface- HasThreshold
- Returns:
- (undocumented)
 
- 
weightColDescription copied from interface:HasWeightColParam for weight column name. If this is not set or empty, we treat all instance weights as 1.0.- Specified by:
- weightColin interface- HasWeightCol
- Returns:
- (undocumented)
 
- 
standardizationDescription copied from interface:HasStandardizationParam for whether to standardize the training features before fitting the model.- Specified by:
- standardizationin interface- HasStandardization
- Returns:
- (undocumented)
 
- 
tolDescription copied from interface:HasTolParam for the convergence tolerance for iterative algorithms (>= 0).
- 
fitInterceptDescription copied from interface:HasFitInterceptParam for whether to fit an intercept term.- Specified by:
- fitInterceptin interface- HasFitIntercept
- Returns:
- (undocumented)
 
- 
maxIterDescription copied from interface:HasMaxIterParam for maximum number of iterations (>= 0).- Specified by:
- maxIterin interface- HasMaxIter
- Returns:
- (undocumented)
 
- 
elasticNetParamDescription copied from interface:HasElasticNetParamParam for the ElasticNet mixing parameter, in range [0, 1]. For alpha = 0, the penalty is an L2 penalty. For alpha = 1, it is an L1 penalty.- Specified by:
- elasticNetParamin interface- HasElasticNetParam
- Returns:
- (undocumented)
 
- 
regParamDescription copied from interface:HasRegParamParam for regularization parameter (>= 0).- Specified by:
- regParamin interface- HasRegParam
- Returns:
- (undocumented)
 
- 
uidDescription copied from interface:IdentifiableAn immutable unique ID for the object and its derivatives.- Specified by:
- uidin interface- Identifiable
- Returns:
- (undocumented)
 
- 
coefficientMatrix
- 
interceptVector
- 
numClassespublic int numClasses()Description copied from class:ClassificationModelNumber of classes (values which the label can take).- Specified by:
- numClassesin class- ClassificationModel<Vector,- LogisticRegressionModel> 
 
- 
coefficientsA vector of model coefficients for "binomial" logistic regression. If this model was trained using the "multinomial" family then an exception is thrown.- Returns:
- Vector
 
- 
interceptpublic double intercept()The model intercept for "binomial" logistic regression. If this model was fit with the "multinomial" family then an exception is thrown.- Returns:
- Double
 
- 
setThresholdDescription copied from interface:LogisticRegressionParamsSet threshold in binary classification, in range [0, 1].If the estimated probability of class label 1 is greater than threshold, then predict 1, else 0. A high threshold encourages the model to predict 0 more often; a low threshold encourages the model to predict 1 more often. Note: Calling this with threshold p is equivalent to calling setThresholds(Array(1-p, p)). WhensetThreshold()is called, any user-set value forthresholdswill be cleared. If boththresholdandthresholdsare set in a ParamMap, then they must be equivalent.Default is 0.5. - Specified by:
- setThresholdin interface- LogisticRegressionParams
- Parameters:
- value- (undocumented)
- Returns:
- (undocumented)
 
- 
getThresholdpublic double getThreshold()Description copied from interface:LogisticRegressionParamsGet threshold for binary classification.If thresholdsis set with length 2 (i.e., binary classification), this returns the equivalent threshold:
 . Otherwise, returns `threshold` if set, or its default value if unset. @group getParam @throws IllegalArgumentException if `thresholds` is set to an array of length other than 2.1 / (1 + thresholds(0) / thresholds(1))- Specified by:
- getThresholdin interface- HasThreshold
- Specified by:
- getThresholdin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
setThresholdsDescription copied from interface:LogisticRegressionParamsSet thresholds in multiclass (or binary) classification to adjust the probability of predicting each class. Array must have length equal to the number of classes, with values greater than 0, excepting that at most one value may be 0. The class with largest value p/t is predicted, where p is the original probability of that class and t is the class's threshold.Note: When setThresholds()is called, any user-set value forthresholdwill be cleared. If boththresholdandthresholdsare set in a ParamMap, then they must be equivalent.- Specified by:
- setThresholdsin interface- LogisticRegressionParams
- Overrides:
- setThresholdsin class- ProbabilisticClassificationModel<Vector,- LogisticRegressionModel> 
- Parameters:
- value- (undocumented)
- Returns:
- (undocumented)
 
- 
getThresholdspublic double[] getThresholds()Description copied from interface:LogisticRegressionParamsGet thresholds for binary or multiclass classification.If thresholdsis set, return its value. Otherwise, ifthresholdis set, return the equivalent thresholds for binary classification: (1-threshold, threshold). If neither are set, throw an exception.- Specified by:
- getThresholdsin interface- HasThresholds
- Specified by:
- getThresholdsin interface- LogisticRegressionParams
- Returns:
- (undocumented)
 
- 
numFeaturespublic int numFeatures()Description copied from class:PredictionModelReturns the number of features the model was trained on. If unknown, returns -1- Overrides:
- numFeaturesin class- PredictionModel<Vector,- LogisticRegressionModel> 
 
- 
summaryGets summary of model on training set. An exception is thrown ifhasSummaryis false.- Specified by:
- summaryin interface- HasTrainingSummary<LogisticRegressionTrainingSummary>
- Returns:
- (undocumented)
 
- 
binarySummaryGets summary of model on training set. An exception is thrown ifhasSummaryis false or it is a multiclass model.- Returns:
- (undocumented)
 
- 
evaluateEvaluates the model on a test dataset.- Parameters:
- dataset- Test dataset to evaluate model on.
- Returns:
- (undocumented)
 
- 
predictPredict label for the given feature vector. The behavior of this can be adjusted usingthresholds.- Overrides:
- predictin class- ClassificationModel<Vector,- LogisticRegressionModel> 
- Parameters:
- features- (undocumented)
- Returns:
- (undocumented)
 
- 
predictRawDescription copied from class:ClassificationModelRaw prediction for each possible label. The meaning of a "raw" prediction may vary between algorithms, but it intuitively gives a measure of confidence in each possible label (where larger = more confident). This internal method is used to implementtransform()and outputClassificationModel.rawPredictionCol().- Specified by:
- predictRawin class- ClassificationModel<Vector,- LogisticRegressionModel> 
- Parameters:
- features- (undocumented)
- Returns:
- vector where element i is the raw prediction for label i. This raw prediction may be any real number, where a larger value indicates greater confidence for that label.
 
- 
copyDescription copied from interface:ParamsCreates a copy of this instance with the same UID and some extra params. Subclasses should implement this method and set the return type properly. SeedefaultCopy().- Specified by:
- copyin interface- Params
- Specified by:
- copyin class- Model<LogisticRegressionModel>
- Parameters:
- extra- (undocumented)
- Returns:
- (undocumented)
 
- 
writeReturns aMLWriterinstance for this ML instance.For LogisticRegressionModel, this does NOT currently save the trainingsummary(). An option to savesummary()may be added in the future.This also does not save the Model.parent()currently.- Specified by:
- writein interface- MLWritable
- Returns:
- (undocumented)
 
- 
toString- Specified by:
- toStringin interface- Identifiable
- Overrides:
- toStringin class- Object
 
 
-