Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 516 Bytes

reproducible.md

File metadata and controls

13 lines (10 loc) · 516 Bytes

如何完美复现训练过程

Note(wen):

  • 多进程方式运行不能保证完美复现, Why?
  • 同样的输入参数,分别在GPU和CPU上运行的结果并不一致, PyTorch Reproducibility
  • 同样的输入参数,在相同类型设备(GPU/CPU)上运行, 可以完美复现

设置“非多进程”的方式训练: ```--num_env 1``

ddpg为例:

python -m tbase.run --alg ddpg --num_env 1