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
run中: for i in range(5): verbose = i % 5 == 0
for i in range(5): verbose = i % 5 == 0
改为: for j in range(5): verbose = j % 5 == 0
for j in range(5): verbose = j % 5 == 0
The text was updated successfully, but these errors were encountered:
关键是这个循环有什么用呢???
Sorry, something went wrong.
是,我也发现了,这个循环我觉得是多余的。因为policy_update里已经用那些batch训练了5个epoch了,外面无必要循环。
No branches or pull requests
run中:
for i in range(5): verbose = i % 5 == 0
改为:
for j in range(5): verbose = j % 5 == 0
The text was updated successfully, but these errors were encountered: