Revision 84ea7aa1fd83966d6a121e60e14dfaac4675c767 authored by AurelianTactics on 24 October 2018, 16:59:46 UTC, committed by pzhokhov on 24 October 2018, 16:59:46 UTC
DeepQ, PPO2, ACER, trpo_mpi, A2C, and ACKTR have the code for:

```
from baselines.common import set_global_seeds
...
def learn(...):
...
   set_global_seeds(seed)
```

DDPG has the argument 'seed=None' but doesn't have the two lines of code needed to set the global seeds.
1 parent 88300ed
Raw File
.travis.yml
language: python
python:
    - "3.6"

services:
    - docker

install:
    - pip install flake8
    - docker build . -t baselines-test

script:
    - flake8 . --show-source --statistics
    - docker run baselines-test pytest -v .
back to top