Use feedback or reinforcement in machine learning?

后端 未结 3 1883
星月不相逢
星月不相逢 2021-01-31 11:13

I am trying to solve some classification problem. It seems many classical approaches follow a similar paradigm. That is, train a model with some training set and than use it to

3条回答
  •  耶瑟儿~
    2021-01-31 11:56

    There are two areas of research that spring to mind.

    The first is Reinforcement Learning. This is an online learning paradigm that allows you to get feedback and update your policy (in this instance, your classifier) as you observe the results.

    The second is active learning, where the classifier gets to select examples from a pool of unclassified examples to get labelled. The key is to have the classifier choose the examples for labelling which best improve its accuracy by choosing difficult examples under the current classifier hypothesis.

提交回复
热议问题