Microyu
Microyu
I missed the same error "NotimplentmentedError". How to solve it?
> instead of using create_atari_env() for creating gym enviornment, you need to use gym.make() not work for me
I figure out! use `gym.ObservationWrapper.__init__(self, env)` instead of `super(AtariRescale42x42, self).__init__(env)` and `super(NormalizedEnv, self).__init__(env)` then use `def observation(self, observation):` instead of `def _observation(self, observation):` in `envs.py`
same issue ``` File "f:\rl experiment\offline rl\cql\d4rl\rlkit\core\logging.py", line 170, in log fd.write(out + '\n') UnicodeEncodeError: 'gbk' codec can't encode character '\xd6' in position 27: illegal multibyte sequence ```
solution: remove `%Z` in https://github.com/rail-berkeley/rlkit/blob/60bdfcd09f48f73a450da139b2ba7910b8cede53/rlkit/core/logging.py#L179
same question and it seems also not used in rlkit's example script [https://github.com/rail-berkeley/rlkit/issues/85](https://github.com/rail-berkeley/rlkit/issues/85)
same question