Skip to content

Commit

Permalink
Merge pull request #17 from noanabeshima/patch-1
Browse files Browse the repository at this point in the history
Minor change
  • Loading branch information
nikhilbarhate99 committed Dec 13, 2019
2 parents 64376aa + 85a65d8 commit 87eaa74
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions PPO.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ def clear_memory(self):
class ActorCritic(nn.Module):
def __init__(self, state_dim, action_dim, n_latent_var):
super(ActorCritic, self).__init__()
self.affine = nn.Linear(state_dim, n_latent_var)


# actor
self.action_layer = nn.Sequential(
nn.Linear(state_dim, n_latent_var),
Expand Down

0 comments on commit 87eaa74

Please sign in to comment.