Random Forest Regression (ML_R_6)
This function builds multiple decision trees and combines their outputs to make a final prediction.
The algorithm randomly selects a subset of features and samples to train each decision tree, making it less prone to overfitting compared to a single decision tree. The final prediction is made by averaging the predictions of all the trees in the forest. It can be used for both continuous and categorical target variables and is often considered to be a robust and accurate algorithm for regression tasks.
Sample Request
Build a multiple linear regression model named, "SimpleModel"
Building a Random Forest Regression model
Random Forest Regression
POST
https://autogon.ai/api/v1/engine/start
Request Body
Sample Request
Make predictions with the pre-built model passing an optional test data.
Predicting with Random Forest Regression
Random Forest Regression Predict
POST
https://autogon.ai/api/v1/engine/start
Request Body
Last updated