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.
|
static DecisionTreeRegressionModel |
fromOld(DecisionTreeModel oldModel,
DecisionTreeRegressor parent,
scala.collection.immutable.Map<Object,Object> categoricalFeatures)
(private[ml]) Convert a model from the old API
|
Node |
rootNode() |
String |
toString() |
String |
uid() |
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, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, 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)
public String uid()
public Node rootNode()
public DecisionTreeRegressionModel copy(ParamMap extra)
Paramscopy in interface Paramscopy in class Model<DecisionTreeRegressionModel>extra - (undocumented)public String toString()
toString 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.