ValueError Traceback (most recent call last)
/home/parksangtae/RL-Adventure-master/1.dqn.ipynb Cell 19 line 1
[11] epsilon = epsilon_by_frame(frame_idx)
[12] action = model.act(state, epsilon)
---> [14] next_state, reward, done, _ = env.step(action)
[15] replay_buffer.push(state, action, reward, next_state, done)
[17] state = next_state
ValueError: too many values to unpack (expected 4)
could you tell me why this error is happen?