How to provide Intentional Bias towards recent examples in Text Classification?
I have trained an XGBClassifier to classify text issues to a rightful assignee (simple 50-way classification). The source from where I am fetching the data also provides a datetime object which gives us the timestamp at which the issue was created.
Logically, the person who has recently worked on an issue (say 2 weeks ago) should be a better suggestion instead of (another) person who has worked on similar issue 2 years ago.
That is, if there two examples from training set, one recent, one old, How can I introduce an intentional recency bias so that model classifies / suggests the label from recent example?
Topic bias text-classification xgboost preprocessing classification
Category Data Science