- TensorFlow Reinforcement Learning Quick Start Guide
- Kaushik Balakrishnan
- 214字
- 2021-06-24 15:29:07
Learning the Markov decision process
The Markov property is widely used in RL, and it states that the environment's response at time t+1 depends only on the state and action at time t. In other words, the immediate future only depends on the present and not on the past. This is a useful property that simplifies the math considerably, and is widely used in many fields such as RL and robotics.
Consider a system that transitions from state s0 to s1 by taking an action a0 and receiving a reward r1, and thereafter from s1 to s2 taking action a1, and so on until time t. If the probability of being in a state s' at time t+1 can be represented mathematically as in the following function, then the system is said to follow the Markov property:

Note that the probability of being in state st+1 depends only on st and at and not on the past. An environment that satisfies the following state transition property and reward function as follows is said to be a Markov Decision Process (MDP):


Let's now define the very foundation of RL: the Bellman equation. This equation will help in providing an iterative solution to obtaining value functions.
- Python Artificial Intelligence Projects for Beginners
- 并行數據挖掘及性能優化:關聯規則與數據相關性分析
- MCSA Windows Server 2016 Certification Guide:Exam 70-741
- 空間傳感器網絡復雜區域智能監測技術
- 讓每張照片都成為佳作的Photoshop后期技法
- Kubernetes for Developers
- R Data Analysis Projects
- 生成對抗網絡項目實戰
- 傳感器原理與工程應用
- 企業級Web開發實戰
- 計算機辦公應用培訓教程
- 機器人剛柔耦合動力學
- Advanced Deep Learning with Keras
- Microsoft System Center Data Protection Manager Cookbook
- PostgreSQL High Performance Cookbook