Skip to content

Commit

Permalink
fix: Removed seeding bias.
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleabTessera committed Dec 13, 2021
1 parent b85e082 commit d678804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mava/systems/tf/mappo/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def make_default_networks(
networks.MultivariateNormalDiagHead(
num_dimensions=num_actions,
w_init=tf.initializers.VarianceScaling(1e-4, seed=seed),
b_init=tf.initializers.Zeros(seed=seed),
b_init=tf.initializers.Zeros(),
),
networks.TanhToSpec(specs[key].actions),
]
Expand Down

0 comments on commit d678804

Please sign in to comment.