ergsfe

Results 3 comments of ergsfe

```python import tensorflow as tf import numpy as np import tf_agents import tf_agents.environments.py_environment import tf_agents.environments.tf_py_environment import tf_agents.specs class ExamplePyEnv(tf_agents.environments.py_environment.PyEnvironment): def __init__(self): super().__init__() def _step(self,action): return np.array([0.0]) def _reset(self,action): return np.array([0.0])...

I think that the .seed function is called on the `BatchedPyEnv`, which doesn't implement it. ```python NotImplementedError('No seed support for this environment.') Traceback (most recent call last): File "", line...