Skip to content

Commit

Permalink
Corrected SAC get_snapshot. (rail-berkeley#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanChar authored Jul 22, 2020
1 parent ff491f7 commit ed28309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rlkit/torch/sac/sac.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,6 @@ def get_snapshot(self):
policy=self.policy,
qf1=self.qf1,
qf2=self.qf2,
target_qf1=self.qf1,
target_qf2=self.qf2,
target_qf1=self.target_qf1,
target_qf2=self.target_qf2,
)

0 comments on commit ed28309

Please sign in to comment.