Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seungeunrho committed Nov 13, 2020
1 parent 99413ee commit f4ad85c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sac.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 12,9 @@
lr_q = 0.001
init_alpha = 0.01
gamma = 0.98
batch_size = 32
batch_size = 32
buffer_limit = 50000
tau = 0.01 # for target network soft update
tau = 0.01 # for target network soft update
target_entropy = -1.0 # for automated alpha update
lr_alpha = 0.001 # for automated alpha update

Expand Down

0 comments on commit f4ad85c

Please sign in to comment.