Set up environment

Hi,

I am new to this competition and quite alone. In the file run.py, what must be the default value of environment_filename ?

parser.add_argument('environment_filename', default='obstacle_tower_env/obstacle_tower_env.py', nargs='?')

Where does this file come from ? or is it a folder ? Thank you.

This is python argparse module, the default value is the one you specify on the command line, e.g.:

python run.py ./ObstacleTower/obstacletower

If the obstacletower executable is located within the ObstacleTower subfolder.

This has no impact whatsoever when testing the evaluation with docker or submitting because the executable is not used.

Thanks for your answer.