Open scott-yj-yang opened 1 year ago
Hi, can you help explain how we can implement random forest regressors on a continuos set of variables?
If you are using sk-learn, it should be as simple as rf = RandomForestRegressor(random_state=42) rf.fit(X_train, y_train)
Project Proposal Feedback
Score (out of 9)
Score = 9
Feedback:
Rubric
Scoring: Out of 9 points
If students address the detailed feedback in a future checkpoint, they will earn these points back.
Comments
Everything looks great to me. For the model selection part, you could also consider random forest regression or SVM, which could provide more insight into the data. Also, as you mentioned that you would split up the data, consider making a whole model for all the data after you transform everything into numerical variables (if too much can also consider abandoning the variable that takes too much space to one hot).