Open
Conversation
The encoder_bias DR event was applied but the actor observed true joint positions, making the bias invisible to the policy during training.
peak_heights was never cleared on episode reset, so stale values from the previous episode carried over and corrupted the metric.
8f702e1 to
e3cc8d0
Compare
e3cc8d0 to
fe093a8
Compare
louislelay
reviewed
Mar 20, 2026
Comment on lines
+29
to
+30
| cfg.sim.njmax = 200 | ||
| cfg.sim.nconmax = 30 |
Collaborator
There was a problem hiding this comment.
Wow, such a low njmax/nconmax work?
| weight=-0.1, | ||
| params={"sensor_name": shank_ground_cfg.name}, | ||
| ) | ||
| cfg.rewards["thigh_collision"] = RewardTermCfg( |
Collaborator
There was a problem hiding this comment.
WDYT about an alive reward? I was thinking it could be helpful especially for rough terrain
When a foot penetrates slightly below the terrain surface, all downward rays miss and the sensor reported max_distance instead of ~0. This corrupted foot clearance rewards and caused heel-walking gaits. Use frame_z clamped to [0, max_distance] as the fallback for all-miss frames instead of unconditionally returning max_distance.
Create Mjlab-Velocity-Flat-Run-Unitree-G1 task that extends the flat config with a velocity command curriculum for learning to run. Move the curriculum out of the base velocity config where it was applied to all robots. Set Go1 flat iterations to 1.5k.
Increase base ang_vel_z from (-0.5, 0.5) to (-1.0, 1.0). Ramp the G1 run curriculum stages to (-1.5, 1.5) and (-2.0, 2.0).
2dc22bb to
ab4286f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
WIP