Skip to content

Commit

Permalink
removed tanh non-linearity
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilbarhate99 committed Nov 15, 2021
1 parent 6edb99b commit bd8b8bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion PPO.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def __init__(self, state_dim, action_dim, has_continuous_action_space, action_st
nn.Linear(64, 64),
nn.Tanh(),
nn.Linear(64, action_dim),
nn.Tanh()
)
else:
self.actor = nn.Sequential(
Expand Down

0 comments on commit bd8b8bf

Please sign in to comment.