-1

should the values of the state in DQN need to be only 0 to 1 for example state = [0, 0, 0, 1, 1, 1, 1, 0, 1, 0]

or it can have a state with values greater than 1 eh state = [6, 5, 4, 1, 1, 1, 2, 3, 15, 10]

KKK
  • 507
  • 3
  • 12

1 Answers1

1

States per se need not be limited in value. You can have as big a range as you want. But for training purposes, it is recommended to normalise the state values in a range [0,1] so that the neural network used a function approximation does not saturate.

nsidn98
  • 1,037
  • 1
  • 9
  • 23