Inverse reinforcement learning
Inverse Reinforcement Learning (IRL) is one of the most exciting fields of reinforcement learning. In reinforcement learning, our goal is to learn the optimal policy. That is, our goal is to find the optimal policy that gives the maximum return (sum of rewards of the trajectory). In order to find the optimal policy, first, we should know the reward function. A reward function tells us what reward we obtain by performing an action a in the state s. Once we have the reward function, we can train our agent to learn the optimal policy that gives the maximum reward. But the problem is that designing the reward function is not that easy for complex tasks.
Consider designing the reward function for tasks such as an agent learning to walk, self-driving cars, and so on. In these cases, designing the reward function is not that handy and involves assigning rewards to a variety of agent behaviors. For instance, consider designing the reward function for an...