> ## Documentation Index
> Fetch the complete documentation index at: https://shapely.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Random Forest Regressor

>  Random Forest Regressor creates an ensemble of decision trees, each trained on a random subset of the data. The final prediction is the average of all tree outputs, producing robust and stable results.


<Note>
  Random Forest provides built-in **feature importance** rankings, helping you understand which input features contribute most to the prediction.

  **When unsure which algorithm to use, Random Forest is an excellent and safe default.**
</Note>

### Use Cases

* **Complex geometric relationships** in parametric design
* **Energy simulation** surrogate models
* **Cost prediction** when interactions between variables are non-linear
* **Generative design** ranking models

<a href="/images/ML/Random Forest Regressor.png" target="_blank">
  <img src="https://mintcdn.com/shapely/k8EK4RW_OYOqKd74/images/ML/Random%20Forest%20Regressor.png?fit=max&auto=format&n=k8EK4RW_OYOqKd74&q=85&s=25ac3778ecc7b7ac2de9b59e049d094e" className="pointer-events-none" style={{ borderRadius: '0.5rem', border: '1px solid rgba(0,0,0,0.1)' }} width="1866" height="1035" data-path="images/ML/Random Forest Regressor.png" />
</a>
