C++ API Reference for Intel® Data Analytics Acceleration Library 2020 Update 1

List of all members
Parameter Struct Reference

Decision tree algorithm parameters. More...

Class Declaration

struct DAAL_EXPORT Parameter : public daal::algorithms::Parameter
{
Parameter() : daal::algorithms::Parameter(),
pruning(reducedErrorPruning), maxTreeDepth(0), minObservationsInLeafNodes(5)
{}
services::Status check() const DAAL_C11_OVERRIDE;
Pruning pruning;
size_t maxTreeDepth;
size_t minObservationsInLeafNodes;
};

Constructor & Destructor Documentation

Parameter ( )
inline

Main constructor

Member Function Documentation

services::Status check ( ) const

Checks a parameter of the Decision tree algorithm

Member Data Documentation

size_t maxTreeDepth

Maximum tree depth. 0 means unlimited depth.

size_t minObservationsInLeafNodes

Minimum number of observations in the leaf node. Can be any positive number.

Pruning pruning

Pruning method for Decision tree


The documentation for this struct was generated from the following file:

For more complete information about compiler optimizations, see our Optimization Notice.