You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this live stream I seem to be able to show that KNN can perform on par with boosted models once you improve the representation of X. A quick trick to do this is to first run a linear model and to use the trained coefficients to rescale X before indexing it.
Instead of doing both the embedding and the KNN in one go though I think it will be nicer to split this and to have a dedicated (meta?) estimator that can add context to X.
@FBruzzesi I can pick this up, but feel free to tell me if you doubt this idea.
The text was updated successfully, but these errors were encountered:
In this live stream I seem to be able to show that KNN can perform on par with boosted models once you improve the representation of X. A quick trick to do this is to first run a linear model and to use the trained coefficients to rescale X before indexing it.
This implementation shows the idea:
Instead of doing both the embedding and the KNN in one go though I think it will be nicer to split this and to have a dedicated (meta?) estimator that can add context to X.
@FBruzzesi I can pick this up, but feel free to tell me if you doubt this idea.
The text was updated successfully, but these errors were encountered: