public final class DecisionTreeRegressionModel extends PredictionModel<Vector,DecisionTreeRegressionModel> implements scala.Serializable
Decision tree model for regression.
It supports both continuous and categorical features.
param: rootNode Root of the decision tree| Modifier and Type | Method and Description |
|---|---|
DecisionTreeRegressionModel |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
Param<String> |
featuresCol()
Param for features column name.
|
static DecisionTreeRegressionModel |
fromOld(DecisionTreeModel oldModel,
DecisionTreeRegressor parent,
scala.collection.immutable.Map<Object,Object> categoricalFeatures,
int numFeatures)
(private[ml]) Convert a model from the old API
|
String |
getFeaturesCol() |
String |
getLabelCol() |
String |
getPredictionCol() |
Param<String> |
labelCol()
Param for label column name.
|
int |
numFeatures()
Returns the number of features the model was trained on.
|
Param<String> |
predictionCol()
Param for prediction column name.
|
Node |
rootNode() |
String |
toString() |
String |
uid()
An immutable unique ID for the object and its derivatives.
|
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting,
DataType featuresDataType)
Validates and transforms the input schema with the provided param map.
|
setFeaturesCol, setPredictionCol, transform, transformSchematransform, transform, transformclear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn, validateParamsinitializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarningpublic static DecisionTreeRegressionModel fromOld(DecisionTreeModel oldModel, DecisionTreeRegressor parent, scala.collection.immutable.Map<Object,Object> categoricalFeatures, int numFeatures)
public String uid()
Identifiableuid in interface Identifiablepublic Node rootNode()
public int numFeatures()
PredictionModelnumFeatures in class PredictionModel<Vector,DecisionTreeRegressionModel>public DecisionTreeRegressionModel copy(ParamMap extra)
Paramscopy in interface Paramscopy in class Model<DecisionTreeRegressionModel>extra - (undocumented)defaultCopy()public String toString()
toString in interface IdentifiabletoString in class Objectpublic StructType validateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType)
schema - input schemafitting - whether this is in fittingfeaturesDataType - SQL DataType for FeaturesType.
E.g., VectorUDT for vector features.public Param<String> labelCol()
public String getLabelCol()
public Param<String> featuresCol()
public String getFeaturesCol()
public Param<String> predictionCol()
public String getPredictionCol()