Skip to content

Added Random Forest Regressor as an additional prediction model. #12767

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Added Random Forest Regressor to main voting
  • Loading branch information
priyanshu-8789 committed May 24, 2025
commit 67b1d801cfde24e8c85830fce21df764774a6f6d
1 change: 1 addition & 0 deletions machine_learning/forecasting/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ def data_safety_checker(list_vote: list, actual_result: float) -> bool:
),
sarimax_predictor(train_user, train_match, test_match),
support_vector_regressor(x_train, x_test, train_user),
random_forest_regressor(x_train, x_test, train_user), # Added Random Forest Regressor
]

# check the safety of today's data
Expand Down