Skip to content

Commit

Permalink
modifying default number of iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
isaac-racine committed Jun 12, 2024
1 parent a05315c commit 6305796
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@configclass
class UnitreeGo2VelCustom1PPORunnerCfg(RslRlOnPolicyRunnerCfg):
num_steps_per_env = 24
max_iterations = 1000
max_iterations = 5000
save_interval = 200
experiment_name = "unitree_go2_vel_custom"
empirical_normalization = False
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,13 +316,13 @@ class CurriculumCfg:
# func=mdp.modify_constraint_pmax, params={"term_name": "c_action_rate", "pmax_ini": 0.005, "pmax_end" : 0.25, "num_steps": 10000, "num_steps_grad": 30000}
# )
joint_vel = CurriculumTermCfg(
func=mdp.modify_constraint_pmax, params={"term_name": "c_joint_vel", "pmax_ini": 0.05, "pmax_end" : 0.25, "num_steps": 10000, "num_steps_grad": 30000}
func=mdp.modify_constraint_pmax, params={"term_name": "c_joint_vel", "pmax_ini": 0.05, "pmax_end" : 0.25, "num_steps": 15000, "num_steps_grad": 75000}
)
joint_acc = CurriculumTermCfg(
func=mdp.modify_constraint_pmax, params={"term_name": "c_joint_acc", "pmax_ini": 0.05, "pmax_end" : 0.25, "num_steps": 10000, "num_steps_grad": 30000}
func=mdp.modify_constraint_pmax, params={"term_name": "c_joint_acc", "pmax_ini": 0.05, "pmax_end" : 0.25, "num_steps": 15000, "num_steps_grad": 75000}
)
joint_torque = CurriculumTermCfg(
func=mdp.modify_constraint_pmax, params={"term_name": "c_joint_torque", "pmax_ini": 0.05, "pmax_end" : 0.25, "num_steps": 10000, "num_steps_grad": 30000}
func=mdp.modify_constraint_pmax, params={"term_name": "c_joint_torque", "pmax_ini": 0.05, "pmax_end" : 0.25, "num_steps": 15000, "num_steps_grad": 75000}
)

##
Expand Down

0 comments on commit 6305796

Please sign in to comment.