Module forester::dtree[][src]

Deterministic Tree module

A deterministic tree is a tree where a sample is passed down on exactly one side of each split, depending on feature and threshold. (This stands in contrast to probabilistic trees, where samples are passed down both sides with certain probabilities.)

Structs

DeterministicTree

A deterministic decision tree.

DeterministicTreeBuilder

Fit a DeterministicTree to TrainingData.

Enums

Node

A decision tree node.