From bd8b8bf6832dfcfb9125374fd61c0d359e621607 Mon Sep 17 00:00:00 2001 From: Nikhil Barhate <30340547+nikhilbarhate99@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:14:10 +0530 Subject: [PATCH] removed tanh non-linearity --- PPO.py | 1 - 1 file changed, 1 deletion(-) diff --git a/PPO.py b/PPO.py index 3bcd076..77bfccf 100644 --- a/PPO.py +++ b/PPO.py @@ -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(