Incorporating user feedback in a ML model

前端 未结 2 1366
走了就别回头了
走了就别回头了 2021-01-31 21:52

I have developed a ML model for a classification (0/1) NLP task and deployed it in production environment. The prediction of the model is displayed to users, and the users have

2条回答
  •  情深已故
    2021-01-31 22:28

    Build a simple, light model(s) that can be updated per feedback. Online Machine learning gives a number of candidates for this

    Most good online classifiers are linear. In which case we can have a couple of them and achieve non-linearity by combining them via a small shallow neural net

    https://stats.stackexchange.com/questions/126546/nonlinear-dynamic-online-classification-looking-for-an-algorithm

提交回复
热议问题