Update sac.py

This commit is contained in:
Pranjal Tandon
2018-09-03 22:11:09 +05:30
committed by GitHub
parent 896134e7b8
commit 1ca5aa1d06
-1
View File
@@ -37,7 +37,6 @@ class SAC(object):
self.value_criterion = nn.MSELoss()
self.soft_q_criterion = nn.MSELoss()
self.action_prior = "uniform"
# Make sure target is with the same weight
hard_update(self.value_target, self.value)