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

A puzzle about DQN #450

Open
guest-oo opened this issue Nov 8, 2024 · 0 comments
Open

A puzzle about DQN #450

guest-oo opened this issue Nov 8, 2024 · 0 comments

Comments

@guest-oo
Copy link

guest-oo commented Nov 8, 2024

Why do you use update_times = int(buffer.cur_size * self.repeat_times / self.batch_size) when updating the network?
update_times = int(buffer.cur_size * self.repeat_times / self.batch_size)
for update_t in range(update_times):
obj_critic, obj_actor = self.update_objectives(buffer, self.batch_size, update_t)
objs_critic.append(obj_critic)
objs_actor.append(obj_actor) if isinstance(obj_actor, float) else None

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