Skip to content

Commit

Permalink
Fix value fn
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguy11325 committed Mar 22, 2024
1 parent 61226ef commit 5ebb02d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemonred_puffer/policies/multi_convolutional.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(
)

self.actor = nn.LazyLinear(self.num_actions)
self.value_fn = nn.LazyLinear(output_size, 1)
self.value_fn = nn.LazyLinear(1)

def encode_observations(self, observations):
observations = unpack_batched_obs(observations, self.unflatten_context)
Expand Down

0 comments on commit 5ebb02d

Please sign in to comment.