What’s Reinforcement Learning
One sentence to define reinforcement learning: the goal of RL is to find out a better policy to get more rewards from environment based on our current state, experience in the past, expectation and exploration in the future.
Here are some important concept:
- We: Intelligent agents, human or robot.
- Policy: The way we make decisions.
- Reward: Critiria about how well we did.
- Environment: Where we can get our states and rewards.
- State: Current situation we are in.
- Experience: How we choose to react and how many rewards the environment gives us.
- Expectation: Before we make a decision, we will consider how many rewards we will get by doing this.
- Exploration: We sometimes will try a new action, and watch the result.