Class LassoWithSGD
Object
org.apache.spark.mllib.regression.GeneralizedLinearAlgorithm<LassoModel>
org.apache.spark.mllib.regression.LassoWithSGD
- All Implemented Interfaces:
Serializable
,org.apache.spark.internal.Logging
,scala.Serializable
public class LassoWithSGD
extends GeneralizedLinearAlgorithm<LassoModel>
implements scala.Serializable
Train a regression model with L1-regularization using Stochastic Gradient Descent.
This solves the l1-regularized least squares regression formulation
f(weights) = 1/2n ||A weights-y||^2^ + regParam ||weights||_1
Here the data matrix has n rows, and the input RDD holds the set of rows of A, each with
its corresponding right hand side label y.
See also the documentation for the precise formulation.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.spark.internal.Logging
org.apache.spark.internal.Logging.SparkShellLoggingFilter
-
Method Summary
Modifier and TypeMethodDescriptionThe optimizer to solve the problem.Methods inherited from class org.apache.spark.mllib.regression.GeneralizedLinearAlgorithm
getNumFeatures, isAddIntercept, run, run, setIntercept, setValidateData
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.spark.internal.Logging
initializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq
-
Method Details
-
optimizer
Description copied from class:GeneralizedLinearAlgorithm
The optimizer to solve the problem.- Specified by:
optimizer
in classGeneralizedLinearAlgorithm<LassoModel>
- Returns:
- (undocumented)
-