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
According to the DQN nature paper and PPO1 implementation, this line:
X = activ(conv(X, 'c3', nf=64, rf=4, stride=1, init_scale=np.sqrt(2), data_format=data_format))
should be changed to:
X = activ(conv(X, 'c3', nf=64, rf=3, stride=1, init_scale=np.sqrt(2), data_format=data_format))
In short, kernel size is wrong!
The text was updated successfully, but these errors were encountered:
这两行有什么区别?
Sorry, something went wrong.
@xiaioding The difference is in kernel sizes (rf.)
rf
No branches or pull requests
According to the DQN nature paper and PPO1 implementation, this line:
should be changed to:
In short, kernel size is wrong!
The text was updated successfully, but these errors were encountered: