Poor model performance #1496
quartermaine
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am exploring incremental learning using the car_evaluation dataset. To implement this, I've taken the following steps:
Data Preparation:
I keep the last 20 lines of the dataset for later use in incremental learning.
Model Configuration:
I create a model using the HoeffdingTreeClassifier with the following parameters:
The model is then fitted on the training data.
Cross Validation:
I perform cross-validation to check the accuracy of the model:
then I make cross validation to check the accuracy
Evaluation on Kept Data:
Finally, I evaluate the model on the data that was kept aside:
Despite these efforts, the accuracy in cross-validation is approximately 0.54%, and the accuracy on the kept data is only 0.06%, which is not acceptable. I'm seeking insights into why this might be happening. Any suggestions or explanations would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions