Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
apirrone committed Oct 11, 2024
1 parent 8414d33 commit c0ceb92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions legged_gym/envs/bdx/bdx_amp_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class scales(LeggedRobotCfg.rewards.scales):
feet_air_time = 0.0
collision = 0.0
feet_stumble = 0.0
action_rate = 0.0 # -1.0
action_rate = -0.1 # -1.0
stand_still = 0.0
dof_pos_limits = 0.0
action_smoothness = -0.002
Expand Down Expand Up @@ -273,7 +273,7 @@ class algorithm(LeggedRobotCfgPPO.algorithm):
amp_replay_buffer_size = 1000000
num_learning_epochs = 5
num_mini_batches = 4
disc_coef = 1 # 5
disc_coef = 5 # 5
# bounds_loss_coef = 10 # commented

class runner(LeggedRobotCfgPPO.runner):
Expand All @@ -291,7 +291,7 @@ class runner(LeggedRobotCfgPPO.runner):
amp_task_reward_lerp = 0.3 # 0.3
amp_discr_hidden_dims = [1024, 512]

disc_grad_penalty = 5 # original 10
disc_grad_penalty = 10 # original 10

# Large incentivizes exploration
min_normalized_std = [0.1] * 15 # 0.02
Expand Down

0 comments on commit c0ceb92

Please sign in to comment.