-
Notifications
You must be signed in to change notification settings - Fork 2k
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
question on freezing target nework #15
Comments
Hello,
|
Hi again, |
I can't remember the exactly number of iterations, but it's no more than ~1000,000 steps |
Still cannot find freezing target network in current version's code. It's really no effect? |
@hashbangCoder |
I also couldn't find freezing target network code. But thanks for your code. It's helpful for me. |
I write a version base on this repo with freezing target network.FlappyBird_DQN_with_target_network |
Here is another repo with target network. https://github.com/patrick-12sigma/DRL_FlappyBird I made target network an option. You can turn it on and off and experiment to see how much it affects the convergence of training. I refactored the network into a class, and added some logging functionalities to track the training process. I also borrowed the human play function from @initial-h. Thanks! |
Hi @yenchenlin1994 , love your implementation!
I went through your code and I can't seem to find where you've frozen the target network?
Unless Im missing something in my excess-caffeine induced brain fade,you continue to update the target every batch?
Wouldn't that hurt your convergence rate badly?
The text was updated successfully, but these errors were encountered: