1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-18 11:40:18 +01:00

Minor bugfix on RewardFilter in Readme (#133)

This commit is contained in:
Ryan Peach
2018-11-30 19:02:08 -05:00
committed by Scott Leishman
parent 3e67eac9e6
commit 28e5b8b612

View File

@@ -20,7 +20,7 @@ or for reward filters:
```bash
from coach.filters.filter import RewardFilter
class CustomFilter(ObservationFilter):
class CustomFilter(RewardFilter):
def __init__(self):
...
def filter(self, env_response: EnvResponse) -> EnvResponse:
@@ -67,4 +67,4 @@ input_filter = InputFilter(
result = input_filter.filter(env_response)
```
```