Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clickml.app/llms.txt

Use this file to discover all available pages before exploring further.

Random Forest Regressor averages the predictions of many decision trees trained on random data subsets. It handles non-linear relationships well and is robust to noisy data.

Configuration

ParameterDescriptionDefault
N EstimatorsNumber of trees in the forest.100
Max DepthMaximum depth of each tree. Leave empty for unlimited.None
Min Samples SplitMinimum samples to split a node.2
Min Samples LeafMinimum samples in a leaf node.1
Random StateSeed for reproducibility.42

Input / Output

Type
InputX Train + Y Train
OutputTrained Model

When to use

A strong default for regression on tabular data. Does not require feature scaling. Works well out of the box without extensive tuning.