Skip to content

Commit

Permalink
[BugFix] Fix examples (#1945)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens committed Feb 28, 2024
1 parent 5e03a4c commit ad02db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/multiagent/mappo_ippo.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def train(cfg: "DictConfig"): # noqa: F821
loss_module.value_estimator(
tensordict_data,
params=loss_module.critic_network_params,
target_params=loss_module.target_critic_params,
target_params=loss_module.target_critic_network_params,
)
current_frames = tensordict_data.numel()
total_frames += current_frames
Expand Down

0 comments on commit ad02db6

Please sign in to comment.