We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @vojtamolda !
While debugging the code for https://github.com/vojtamolda/reinforcement-learning-an-introduction/blob/main/chapter04/exercise04-07.ipynb, I got into this scenario.
On the transitions method of the JacksCarRental class:
(1) the value of transfer was -5 (2) the transfer_cost was 5*2=10 (3) the transferred value was -3 (as self.max_cars - state[0] was 3)
it looks weird to me that the transfer_cost is for the 5 cars, but in fact we only moved 3.
shouldn't the trasnfer_cost be calculated only for the transferred cars?
Thank you very much for your help.
Best regards,
David.
The text was updated successfully, but these errors were encountered:
Thanks for opening the issue. I don't have time to work on this right now, but I'll look into it eventually.
Sorry, something went wrong.
No branches or pull requests
Hi @vojtamolda !
While debugging the code for https://github.com/vojtamolda/reinforcement-learning-an-introduction/blob/main/chapter04/exercise04-07.ipynb, I got into this scenario.
On the transitions method of the JacksCarRental class:
(1) the value of transfer was -5
(2) the transfer_cost was 5*2=10
(3) the transferred value was -3 (as self.max_cars - state[0] was 3)
it looks weird to me that the transfer_cost is for the 5 cars, but in fact we only moved 3.
shouldn't the trasnfer_cost be calculated only for the transferred cars?
Thank you very much for your help.
Best regards,
David.
The text was updated successfully, but these errors were encountered: