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 treeModifier 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, transformSchema
transform, transform, transform
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn, validateParams
initializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning
public static DecisionTreeRegressionModel fromOld(DecisionTreeModel oldModel, DecisionTreeRegressor parent, scala.collection.immutable.Map<Object,Object> categoricalFeatures, int numFeatures)
public String uid()
Identifiable
uid
in interface Identifiable
public Node rootNode()
public int numFeatures()
PredictionModel
numFeatures
in class PredictionModel<Vector,DecisionTreeRegressionModel>
public DecisionTreeRegressionModel copy(ParamMap extra)
Params
copy
in interface Params
copy
in class Model<DecisionTreeRegressionModel>
extra
- (undocumented)defaultCopy()
public String toString()
toString
in interface Identifiable
toString
in class Object
public 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()