DeepBlockDeepak / kaggle_titanic

Titanic Survivor Predictor: A multiple machine learning model project to forecast survival outcomes of Titanic passengers. Engineered from historical data, refined with feature selection, tested with CI/CD, and outputs validation metrics.
https://www.kaggle.com/c/titanic
1 stars 0 forks source link

Add Testing for RandomForestClassifier Initialization #2

Closed DeepBlockDeepak closed 7 months ago

DeepBlockDeepak commented 8 months ago

Consider some testing apparatus, probably for use in /tests, to determine the best combination of parameters for the RFC, which is currently set to:

model = RandomForestClassifier(n_estimators=100, max_depth=10, random_state=1)