Checkout
Start free trial
Take Naologic for a spin today, no credit card needed and no obligations.
Start free trial
Question

Fast-And-Frugal Trees - Why are decision trees fast?

Answer

The test inputs just need to traverse the tree to a leaf, and the prediction is the majority label of that leaf. Decision trees are also highly quick during test time, and they don't require any metrics because the splits are based on feature thresholds and not distances. An algorithm for making binary decisions.