Skip to content

Commit

Permalink
Add CRR algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
takuseno committed Mar 5, 2021
1 parent bc49712 commit 15c2ad2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion front/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,15 @@ export const CONTINUOUS_CONFIGS = {
initial_alpha: 5.0,
alpha_threshold: 10.0,
n_action_samples: 10,
n_critics: 2
n_critics: 2,
soft_q_backup: false
},
crr: {
actor_learning_rate: 3e-4,
critic_learning_rate: 3e-4,
batch_size: 100,
target_update_interval: 100,
n_action_samples: 4
},
ddpg: {
actor_learning_rate: 3e-4,
Expand Down

0 comments on commit 15c2ad2

Please sign in to comment.