midQ-Learning
What is a target network in DQN?
Updated May 17, 2026
Short answer
A fixed copy of the Q-network used for stable target computation.
Deep explanation
The target network is updated less frequently to reduce oscillations in Q-value updates.
Real-world example
Used in autonomous driving simulation training.
Common mistakes
- Updating target network too frequently.
Follow-up questions
- How often should target network update?
- What happens without it?