Learn Before
Concept

DQN

DQN is a milestone work for reinforcement learning. It introduces an end-2-end deep neural network to approximate the value fucntion. As a result, it solves the problem that traditional Q form can't deal with the high dimensional or continious input problem. There are two key tricks here, experience reply and fixed Q-target. Experience reply breaks samples' dependency and makes more samples available. Fixed Q-target plays a key role in helping rl model reach its convergence.

0

3

Updated 2021-03-21

Tags

Data Science

Learn After