Skip to content
New issue

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

How to get human experience replay #5

Closed
DanielTakeshi opened this issue Dec 8, 2016 · 1 comment
Closed

How to get human experience replay #5

DanielTakeshi opened this issue Dec 8, 2016 · 1 comment

Comments

@DanielTakeshi
Copy link
Owner

Doing human experience replay the naive way (as in, making a separate numpy array and loading them in, then combining with the built-in dataset in deep_q_rl) means the code runs possibly several orders of magnitude slower. The built-in replay memory has a size of 1 million, and my data is "only" on the order of 10k so there's non reason why my version should be that slow. My guess is that it has something to do with memory issues, if I decrease my human experience replay data by a factor of 10, runtime increases by a factor of 10.

So let's instead figure out how to get the dataset built into the normal experience replay in deep_q_rl.

@DanielTakeshi
Copy link
Owner Author

NVM, likely not getting to this at all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant