- Python Reinforcement Learning Projects
- Sean Saito Yang Wenzhuo Rajalingappaa Shanmugamani
- 305字
- 2021-07-23 19:05:00
The agent
The goal of a reinforcement learning agent is to learn to perform a task well in an environment. Mathematically, this means to maximize the cumulative reward, R, which can be expressed in the following equation:
We are simply calculating a weighted sum of the reward received at each timestep.is called the discount factor, which is a scalar value between 0 and 1. The idea is that the later a reward comes, the less valuable it becomes. This reflects our perspectives on rewards as well; that we'd rather receive $100 now rather than a year later shows how the same reward signal can be valued differently based on its proximity to the present.
Because the mechanics of the environment are not fully observable or known to the agent, it must gain information by performing an action and observing how the environment reacts to it. This is much like how humans learn to perform certain tasks as well.
Suppose we are learning to play chess. While we don't have all the possible moves committed to memory or know exactly how an opponent will play, we are able to improve our proficiency over time. In particular, we are able to become proficient in the following:
- Learning how to react to a move made by the opponent
- Assessing how good of a position we are in to win the game
- Predicting what the opponent will do next and using that prediction to decide on a move
- Understanding how others would play in a similar situation
In fact, reinforcement learning agents can learn to do similar things. In particular, an agent can be composed of multiple functions and models to assist its decision-making. There are three main components that an agent can have: the policy, the value function, and the model.
- 現代測控系統典型應用實例
- ABB工業機器人編程全集
- 21天學通JavaScript
- Photoshop CS4經典380例
- Learning Social Media Analytics with R
- OpenStack Cloud Computing Cookbook(Second Edition)
- Windows環境下32位匯編語言程序設計
- Machine Learning with the Elastic Stack
- 空間機械臂建模、規劃與控制
- R Data Analysis Projects
- 人工智能技術入門
- Mastering Ceph
- Dreamweaver+Photoshop+Flash+Fireworks網站建設與網頁設計完全實用
- 工業機器人入門實用教程
- 深度學習原理與 TensorFlow實踐