EasyDeepLearn

What role does the discount factor gamma play?

easy

Answer

  • Gamma in [0, 1) weights how much future rewards matter compared to immediate ones.
  • Gamma close to 0 = myopic (only care about immediate reward); gamma close to 1 = far-sighted (care about long-term).
  • Also ensures the return sum converges in infinite-horizon problems.
  • Choose based on the task horizon and stability of value estimates.
Check yourself — multiple choice
  • Γ  =  1\Gamma\; = \;1 always leads to divergence in episodic tasks
  • Γ  =  0\Gamma\; = \;0 makes the agent myopic
  • Gamma controls how much a policy explores
  • Gamma only matters in policy-gradient methods

Γ  =  0\Gamma\; = \;0 makes the agent care only about the current reward.

#fundamentals

Practise Reinforcement Learning

214 interview questions in this topic.

Related questions