Make better machine learning prediction thanks to negative feedback

冷暖自知 提交于 2021-02-18 18:19:07

问题


I'm currently using sklearn library in python to use supervised machine learning. I have a list of records like this:

[x1, x2, x3] -> [y1]

And i'm using the Bag Of Words technique. It all works. Sometimes it could happen that the user says the prediction is not right.

Something like a negative record:

[x1, x2, x3] != [y1]

I would like that if this happens the next time (or after many negative feedbacks) the same prediction won't appear.

来源:https://stackoverflow.com/questions/45545178/make-better-machine-learning-prediction-thanks-to-negative-feedback

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!