From 653431be036c818e38856f0148789aea13c4f5fc Mon Sep 17 00:00:00 2001 From: Quanyi Li Date: Wed, 4 Oct 2023 16:52:11 +0100 Subject: [PATCH] Add pull asset hint (#510) remove fatal error level --- metadrive/examples/profile_metadrive.py | 2 +- metadrive/examples/profile_metadrive_marl.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metadrive/examples/profile_metadrive.py b/metadrive/examples/profile_metadrive.py index fb8e89c29..886575595 100644 --- a/metadrive/examples/profile_metadrive.py +++ b/metadrive/examples/profile_metadrive.py @@ -13,7 +13,7 @@ print("Start to profile the efficiency of MetaDrive with 1000 maps and ~4 vehicles!") setup_logger(debug=False) - env = MetaDriveEnv(dict(num_scenarios=1000, start_seed=1010, traffic_density=0.05, log_level=logging.FATAL)) + env = MetaDriveEnv(dict(num_scenarios=1000, start_seed=1010, traffic_density=0.05)) obs, _ = env.reset() start = time.time() reset_used_time = 0 diff --git a/metadrive/examples/profile_metadrive_marl.py b/metadrive/examples/profile_metadrive_marl.py index 4a6cd9800..da7f6803d 100644 --- a/metadrive/examples/profile_metadrive_marl.py +++ b/metadrive/examples/profile_metadrive_marl.py @@ -14,7 +14,7 @@ print("Start to profile the efficiency of MetaDrive Multi-agent Roundabout environment!") setup_logger(debug=False) - env = MultiAgentRoundaboutEnv(dict(start_seed=1010, log_level=logging.FATAL)) + env = MultiAgentRoundaboutEnv(dict(start_seed=1010)) obs, _ = env.reset() start = time.time() reset_used_time = 0