Question 7
In Deep Q-Networks (DQN), a separate target network is maintained, whose weights are periodically copied from the main (online) network instead of being updated at every step. Based on the above data, answer the given subquestions.
What are the effects of periodically updating the weights of the target network in DQN?
Provides stable targets to the main network during training.
Causes the learning targets to be non-stationary.
Mitigates instabilities in Q-learning updates.
Avoids the need for a replay buffer.