You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your file: roijers_train.py, you have:
agent.memorize(state, action, next_state, reward, terminal, roi=True)
loss += agent.learn(corner_w)
But your code in the agent does not take input roi in memorize and corner_w in learn. It can only be run like this:
loss += agent.learn()
agent.memorize(state, action, next_state, reward, terminal)
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
In your file: roijers_train.py, you have:
agent.memorize(state, action, next_state, reward, terminal, roi=True)
loss += agent.learn(corner_w)
But your code in the agent does not take input roi in memorize and corner_w in learn. It can only be run like this:
loss += agent.learn()
agent.memorize(state, action, next_state, reward, terminal)
Thanks!
The text was updated successfully, but these errors were encountered: