mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-07-31 05:44:31 +00:00
Fix RecordEpisodeStatistics param in Blackjack Tutorial (one line) (#1263)
This commit is contained in:
@@ -275,7 +275,7 @@ agent = BlackjackAgent(
|
||||
#
|
||||
|
||||
|
||||
env = gym.wrappers.RecordEpisodeStatistics(env, buffer_length=n_episodes)
|
||||
env = gym.wrappers.RecordEpisodeStatistics(env, deque_size=n_episodes)
|
||||
for episode in tqdm(range(n_episodes)):
|
||||
obs, info = env.reset()
|
||||
done = False
|
||||
|
Reference in New Issue
Block a user