diff --git a/README.md b/README.md index 0812791ad675e666bf2fbb8a611e8a2475690219..0b005b57dbe8a7e171210539384c5ac8bac185a2 100644 --- a/README.md +++ b/README.md @@ -158,8 +158,8 @@ env = RailEnv(width=width, env_renderer = RenderTool(env, gl="PILSVG", agent_render_variant=AgentRenderVariant.AGENT_SHOWS_OPTIONS_AND_BOX, show_debug=False, - screen_height=1000, # Adjust these parameters to fit your resolution - screen_width=1000) # Adjust these parameters to fit your resolution + screen_height=1080, # Adjust these parameters to fit your resolution + screen_width=1920) # Adjust these parameters to fit your resolution def my_controller(): diff --git a/examples/introduction_flatland_2_1.py b/examples/introduction_flatland_2_1.py index faf494f1c99ed0beadb827f58c97964bc865ab02..4a94e60d2b2f8b6510e1b5e2f970a36d99d5cd65 100644 --- a/examples/introduction_flatland_2_1.py +++ b/examples/introduction_flatland_2_1.py @@ -62,7 +62,7 @@ schedule_generator = sparse_schedule_generator(speed_ration_map) # We can furthermore pass stochastic data to the RailEnv constructor which will allow for stochastic malfunctions # during an episode. -stochastic_data = {'malfunction_rate': 100, # Rate of malfunction occurence of single agent +stochastic_data = {'malfunction_rate': 10000, # Rate of malfunction occurence of single agent 'min_duration': 15, # Minimal duration of malfunction 'max_duration': 50 # Max duration of malfunction }