Fits tree-based regression models. Decision trees for interpretability and non-linear relationships, gradient boosting for maximum predictive power. Returns predictions and optional feature importances.
API key for authentication. Get your key at https://finceptbackend.share.zrok.io/auth/register
Feature matrix
[
[1.2, 0.5, 3.1],
[2.1, 1.3, 2.5],
[0.8, 0.9, 4.2]
]Continuous target values
[0.35, 0.42, 0.28]Tree method
tree, gradient_boosting "gradient_boosting"
Maximum tree depth
3
Number of trees (for gradient boosting)
50
Learning rate (for gradient boosting)
0.05
Optional feature matrix for prediction
[[1.5, 0.7, 3.3]]