Minor Errors#97
Open
rojas70 wants to merge 237 commits into
Open
Conversation
… when calling the test/test_gym_env_human.py. Need to add width and height & cameraid to the MujocoRenderer instantiation.
…ings to facilitate student understanding.
…r.py as well as improving how variables are passed in
…nto fractal_replay_buffer
Significant fix. The way the delta was being compute and the way the end-effector pitch angle is setup, you can have a goal position at +pi - eps and a current position at -pi+eps. The true difference should be 2eps, but instead you would get 2pi and not record the reward. We split position and orientation information and computed deltas individually, using a specialized modulus operation for the orientation.
- Separating positive and negative examples exclusively
- Helped with the control of the space mouse. - Also makes robot move faster.
Co-authored-by: Copilot <copilot@github.com>
…aining options documentation Co-authored-by: Copilot <copilot@github.com>
…demonstrations Co-authored-by: Copilot <copilot@github.com>
…e production quality plots
…mages for real robot tasks, and remove outdated data saving instructions.
Added fractal capabilities
added early joint reset for all real robot examples
Restrict numpy version to be less than 2.0.0.
…ests edited test script and made capacity calculation automatic
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.
Commit 422d207 fixes a bug in the way the Mujoco Renderer is instantiated so that there is no crush when calling. test_gym_env_human.py.
Commit 7e23bbd includes a critic_actor_ratio that is missing when agent.high_utd_ratio is called.
Others...