Skip to content

Commit

Permalink
Add pull asset hint (#510)
Browse files Browse the repository at this point in the history
remove fatal error level
  • Loading branch information
QuanyiLi committed Oct 4, 2023
1 parent fb92adc commit 653431b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion metadrive/examples/profile_metadrive.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion metadrive/examples/profile_metadrive_marl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 653431b

Please sign in to comment.