Chronics input data #268
-
Hi, Just a quick question! When playing with the L2RPN Baseline agents (let's say the example with DuelDQN), do I need to specify the path of the downloaded grid data somewhere? I think even when I am creating the environment with Test = False, the summary still shows results for just two chronics (000 and 001)? Am sure am missing something obvious here! Thanks for the help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hello, You should be able to use the correct environment just by calling (for neurips track1 for example): import grid2op
env = grid2op.make("l2rpn_neurips_2020_track1_small") For the environment of track 1 for example. A full list of the available environments is accessible with import grid2op
grid2op.list_available_remote_env() As said in the warning, do not use Benjamin |
Beta Was this translation helpful? Give feedback.
Hello,
You should be able to use the correct environment just by calling (for neurips track1 for example):
For the environment of track 1 for example.
A full list of the available environments is accessible with
As said in the warning, do not use
test=True
for real agent training.Benjamin