Does DifficultyEstimator require preprocessing? #29
-
Hi, in a Kaggle competition I try to epxlore the As I used LGBM as the main regressor, I did not scale the data. However I wonder if this is required once I make use of the The question came up, because this notebook performs much worse than another one where I only used the For reference the notebooks: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, The call to k-NN does indeed scale the data, so this is not required. If something is missing from the documentation, as in this case, you may peek directly into the code by following the [source] link just to the right of the documented class/function; in this case you may look at the code here and you will find the call to the scaler just after "if self.estimator_type == "knn". Best regards, |
Beta Was this translation helpful? Give feedback.
Hi,
The call to k-NN does indeed scale the data, so this is not required.
If something is missing from the documentation, as in this case, you may peek directly into the code by following the [source] link just to the right of the documented class/function; in this case you may look at the code here and you will find the call to the scaler just after "if self.estimator_type == "knn".
Best regards,
Henrik