浏览代码

Update documentation about disabling threading

/develop/sac-apex
Ervin Teng 4 年前
当前提交
61e442ff
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 7
      docs/Training-PPO.md

7
docs/Training-PPO.md


### (Optional) Advanced: Disable Threading
By default, PPO model updates can happen while the environment is being stepped. To disable this
behavior, for instance to maintain strict
By default, PPO model updates can happen while the environment is being stepped. This violates the
experience-gathering, set `threaded` to `false`. Expect a slowdown of approximately 10-20% in
training time if `threaded` is disabled.
assumption of PPO slightly in exchange for a 10-20% training speedup. To maintain the
strict on-policyness of PPO, you can disable parallel updates by setting `threaded` to `false`.
Default Value: `true`

正在加载...
取消
保存