Hello, first of all thanks for your amazing job on EfficientZero.
I tried to adapt EfficientZero on BabyAI environment like: "PutNextLocal", but it just keep give me 0 test score during the 100k step training process.
I made several modifications in order to adapt to BabyAI "PutNextLocal" env:
- I create dir for env at
config/babyai, and implement BabyAIConfig(BaseConfig). I leave every parameters as default just like Atari, and only change line 101 from (image_channel,96,96) to (image_channel,7,7) in file config/babyai/__init__.py.
- Change class name from AtariWrapper(Game) to BabyAIWrapper(Game), and leave everything else as default setting.
- Comment out from line 103 to line 111 since grid game does not have ale.
- Also comment out line from 235 to 237 https://github.com/YeWR/EfficientZero/blob/main/core/utils.py#L235 in
core/utils.py
- Also, modify my bash file like,

After running the programing with default parameter setting like atari, the tensorboard like:



Do you have any suggestions about how to make a correct modification and make the program produce reasonable result on babyai 'PutNextLocal'?
Thank you so much and looking forward to hear from you.
Hello, first of all thanks for your amazing job on EfficientZero.
I tried to adapt EfficientZero on BabyAI environment like: "PutNextLocal", but it just keep give me 0 test score during the 100k step training process.
I made several modifications in order to adapt to BabyAI "PutNextLocal" env:
config/babyai, and implementBabyAIConfig(BaseConfig). I leave every parameters as default just like Atari, and only change line 101 from (image_channel,96,96) to (image_channel,7,7) in fileconfig/babyai/__init__.py.core/utils.pyAfter running the programing with default parameter setting like atari, the tensorboard like:



Do you have any suggestions about how to make a correct modification and make the program produce reasonable result on babyai 'PutNextLocal'?
Thank you so much and looking forward to hear from you.