Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
DenSumy committed Nov 24, 2023
1 parent d07b29c commit 7f3398c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rl_games/configs/smac/v2/terran_5_v_5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ params:
clip_value: False
num_actors: 16
horizon_length: 256
minibatch_size: 2560 # 5 * 512
minibatch_size: 10240 # 5 * 512
mini_epochs: 4
critic_coef: 1
lr_schedule: linear
Expand Down
2 changes: 1 addition & 1 deletion rl_games/envs/smac_v2_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, name="3m", **kwargs):
self.use_central_value = kwargs.pop('central_value', True)
self.concat_infos = True
self.random_invalid_step = kwargs.pop('random_invalid_step', False)
self.replay_save_freq = kwargs.pop('replay_save_freq', 10000)
self.replay_save_freq = kwargs.pop('replay_save_freq', 100)
self.apply_agent_ids = kwargs.pop('apply_agent_ids', True)
with open(self.path, 'r') as stream:
config = yaml.safe_load(stream)
Expand Down

0 comments on commit 7f3398c

Please sign in to comment.