Package sklearn.tree
Interface HasTreeOptions
-
- All Superinterfaces:
org.jpmml.converter.HasNativeConfiguration,org.jpmml.converter.HasOptions,HasSkLearnOptions
- All Known Implementing Classes:
ForestClassifier,ForestRegressor,GradientBoostingClassifier,GradientBoostingRegressor,IsolationForest,TreeClassifier,TreeRegressor
public interface HasTreeOptions extends HasSkLearnOptions, org.jpmml.converter.HasNativeConfiguration
-
-
Field Summary
Fields Modifier and Type Field Description static StringOPTION_COMPACTstatic StringOPTION_FLATstatic StringOPTION_NODE_EXTENSIONSstatic StringOPTION_NODE_IDstatic StringOPTION_NODE_SCOREstatic StringOPTION_NUMERICstatic StringOPTION_PRUNEstatic StringOPTION_WINNER_ID
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Map<String,?>getNativeConfiguration()
-
-
-
Field Detail
-
OPTION_COMPACT
static final String OPTION_COMPACT
- See Also:
TreeModelCompactor, Constant Field Values
-
OPTION_FLAT
static final String OPTION_FLAT
- See Also:
TreeModelFlattener, Constant Field Values
-
OPTION_NODE_EXTENSIONS
static final String OPTION_NODE_EXTENSIONS
- See Also:
Node.hasExtensions(),Node.getExtensions(), Constant Field Values
-
OPTION_NODE_ID
static final String OPTION_NODE_ID
- See Also:
Node.getId(), Constant Field Values
-
OPTION_NODE_SCORE
static final String OPTION_NODE_SCORE
- See Also:
Node.getScore(), Constant Field Values
-
OPTION_NUMERIC
static final String OPTION_NUMERIC
- See Also:
SimplePredicate,SimpleSetPredicate, Constant Field Values
-
OPTION_PRUNE
static final String OPTION_PRUNE
- See Also:
TreeModelPruner, Constant Field Values
-
OPTION_WINNER_ID
static final String OPTION_WINNER_ID
- See Also:
OutputField, Constant Field Values
-
-