danijar / dreamerv2

Mastering Atari with Discrete World Models

Home Page:https://danijar.com/dreamerv2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KeyError: 'dmc' while trying to run walker?

mrmarten opened this issue · comments

This is the commandline and output i get:

(tf2) marten@dpserver:~/rl/dreamerv2$ python3 dreamerv2/train.py --logdir ~/logdir/dmc_walker_walk/dreamerv2/1 --configs dmc --task dmc_walker_walk Traceback (most recent call last): File "dreamerv2/train.py", line 196, in <module> main() File "dreamerv2/train.py", line 37, in main config = config.update(configs[name]) KeyError: 'dmc'

The proper config names are dmc_vision or dmc_proprio (see dreamerv2/configs.yaml) depending on whether you want to train on visual or proprioceptive inputs.

Thanks, fixed!