Skip to content

Commit

Permalink
Put back normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
ffelten committed Feb 19, 2024
1 parent f0a092f commit 513c7be
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,6 @@ def _env_step(runner_state):
critic = Critic(net_arch=args.critic_net_arch, activation=args.activation)
vmapped_get_value = vmap(critic.apply, in_axes=(None, 0))
critic.apply = jax.jit(critic.apply)
actor.apply = jax.jit(actor.apply)

if args.track:
exp_name = args.exp_name
Expand Down
1 change: 0 additions & 1 deletion momaland/learning/cooperative_momappo/discrete_momappo.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,6 @@ def _env_step(runner_state):
critic = Critic(net_arch=args.critic_net_arch, activation=args.activation)
vmapped_get_value = vmap(critic.apply, in_axes=(None, 0))
critic.apply = jax.jit(critic.apply)
actor.apply = jax.jit(actor.apply)

if args.track:
exp_name = args.exp_name
Expand Down

0 comments on commit 513c7be

Please sign in to comment.