ppforest2 v0.1.0
Projection Pursuit Decision Trees and Random Forests
Loading...
Searching...
No Matches
StopRule.hpp File Reference
#include "models/strategies/Strategy.hpp"
#include "stats/Stats.hpp"
#include <vector>

Go to the source code of this file.

Classes

class  ppforest2::stop::StopRule
 Abstract strategy for tree stopping rules. More...
 

Namespaces

namespace  ppforest2
 Binarization strategies for multiclass-to-binary reduction.
 
namespace  ppforest2::stop
 

Functions

StopRule::Ptr ppforest2::stop::any (std::vector< StopRule::Ptr > rules)
 Factory function for composite stop rule (logical OR).
 
StopRule::Ptr ppforest2::stop::max_depth (int n)
 Factory function for max-depth stop rule.
 
StopRule::Ptr ppforest2::stop::min_size (int n)
 Factory function for minimum-size stop rule.
 
StopRule::Ptr ppforest2::stop::min_variance (types::Feature threshold)
 Factory function for minimum-variance stop rule.
 
StopRule::Ptr ppforest2::stop::pure_node ()
 Factory function for pure-node stop rule.