From 1ca5aa1d06834b0aa716dfd72f4eead3fd43e879 Mon Sep 17 00:00:00 2001 From: Pranjal Tandon Date: Mon, 3 Sep 2018 22:11:09 +0530 Subject: [PATCH] Update sac.py --- sac.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sac.py b/sac.py index 4ca464d..5bdb2ab 100644 --- a/sac.py +++ b/sac.py @@ -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)