-
-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] add MaMuJoCo-v1 #161
Closed
Kallinteris-Andreas
wants to merge
115
commits into
Farama-Foundation:main
from
Kallinteris-Andreas:mmjc-v1
Closed
[WIP] add MaMuJoCo-v1 #161
Kallinteris-Andreas
wants to merge
115
commits into
Farama-Foundation:main
from
Kallinteris-Andreas:mmjc-v1
Conversation
This file contains 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
There are no changes and 115 commits. Can you please make an issue first and then make a PR when it's draft ready? @Kallinteris-Andreas |
sorry, was testing the CI |
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.
Description
This is a small release for
MaMuJoCo
, mainly updates toGymnasium/MuJoCo-v5
, along with fixing some bugs and cleaning up the code, optimizing the performance of some components, and taking this opportunity to strengthen the unit test cases.MaMuJoCo-V1
Gymnasium/MuJoCo-v5
instead ofGymnasium/MuJoCo-v4
(Add MuJoCo v5 environments Gymnasium#572).factorizatoion=None
, theenv.gent_action_partitions.dummy_node
now containsaction_id
(it used to beNone
).map_local_observations_to_global_state
& optimized runtime performance ofmap_global_state_to_local_observations
.gym_env
argument, which can be used to load third-partyGymansium.MujocoEnv
environments.Ant
local_categories
ofcfrc_ext
by default (same asGymnasium/MuJoCo-v5/Ant
).torso
→root
.Humanoid(-Standup)
qfrc_actuator
ofroot
&cinert
,cvel
,qfrc_actuator
,cfrc_ext
ofworldbody
(same asGymnasium/MuJoCo-v5/Humanoid(-Standup)
).Walker2d
[root_x, root_z, root_y]
(used to be[root_x, root_x, root_z]
).ManySegmentAnt
frame_skip
default set to5
(same asGymnasium/Ant
).option.timestep
set to0.01
(same asGymnasium/Ant
).Gymnasium/Ant
.cfrc_ext
by default, (same as Gymnasium/MuJoCo-v5).ManySegmentSwimmer
option.timestep
asGymansum/Swimmer
(0.01).mujoco>=3.0.0
.Implementation details (not relevant for the end user)
obsk._observation_structure()
, it now usesMujocoEnv.observation_structure
.ManySegmentAnt
andManySegmentSwimmer
classes (instead thexml_file
argument is used withGymnasium/MuJoCo/Ant-v5
andGymnasium/MuJoCo/Swimmer-v5
frameworks)._generate_local_categories
code and removed_generate_global_categories()
.seed()
function.MultiAgentMujocoEnv.__init__()
.gynmansium==1.0.0
API (breaks withgymnasium<1.0.0
)Jinja2
library requirement is now optionalNote only
map_global_state_to_local_observations
has been reworkedOther
Type of change
Please delete options that are not relevant.
Checklist:
pre-commit
checks withpre-commit run --all-files
(seeCONTRIBUTING.md
instructions to set it up)