Conversation
* Add angular velocity indicators to the velocity command manager * Update the wheeled robot to be a 4-wheel system * Fix envs_idx to torch.Tensor type * Fix action delay setup/reset * Fix class name type: SkrlEnvWapper -> SkrlEnvWrapper Misc typing fixes * Automatically calculate sensitivity for velocity command rewards * Add stopped_dof_velocity penalty * Fix code error * Update Freenove model and training environment * Cleanup * Update stopped_envs in velocity manager to take a threshold. * More PR feedback/fixes * Debug mesh builders (#32)
* Update Freenove model and training environment * Checkpoint * Fix bugs * Pose2dCommand * Cleanup noise and needless constants. * Cleanup readme, environment and unnecessary meshes * Fix navigation training * Remove unused rewards * Fix: Observation noise is applied before scaling * Update project settings * Rename model directory * Update/fix/run examples * Update observation example * Cleanup Pose2DCommand * Cleanup * Add pattern name matching utils * copy edit * lint trap * Add pose2d videos
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.
This is a major version that cleans up some syntax and removes deprecated items. See the UPGRADE.md file for the full instructions on upgrading your environments.
List of changes in this branch, and pending work planned for v1.0:
*_attrparamsobs_normalization=Trueif they stop reaching convergence after this change.MDP Functions (rewards, terminations, observations, entity resets)
This is the biggest change in this version. We're deprecating the
paramsdictionaries in favor of data classes. For example:Before
After
Note that params are passed directly into
base_height. This allows for easier type checking and IDE autocomplete. Before, you'd need to open the mdp function documentation to get the list of params to type into theparamsdict.This also changes how you write custom class-based MDP functions. Now they look like this: