Update model.py

This commit is contained in:
Pranjal Tandon
2018-12-05 02:28:37 +05:30
committed by GitHub
parent 9b7d14c5c6
commit 6440e47a0b
+1 -1
View File
@@ -121,7 +121,7 @@ class DeterministicPolicy(nn.Module):
x = inputs
x = F.relu(self.linear1(x))
x = F.relu(self.linear2(x))
mean = F.tanh(self.mu(x))
mean = F.tanh(self.mean(x))
return mean