This repository is the mjlab-native port of InstinctLab, serving as the environment side of Project-Instinct.
We aim to industrialize Reinforcement Learning for humanoid whole-body control, with task families implemented on top of mjlab and integrated into the Project-Instinct training workflow.
Key Features:
Standalone packageWork outside the coremjlabrepository while keeping task development self-contained.Task suiteProvide locomotion, shadowing, perceptive, and parkour task families for humanoid control onmjlab.Unified ecosystemIntegrate directly with instinct_rl for train / play / export workflows.Structured outputsKeep experiment logs underlogs/instinct_rl/<experiment_name>/<timestamp_run>/to match the Project-Instinct workflow.
Keywords: mjlab, mujoco-warp, instinct_rl, humanoid
This codebase is under CC BY-NC 4.0 license. You may not use the material for commercial purposes, for example to advertise commercial products or redistribute the code as part of a commercial offering.
Do not directly use checkpoints trained outside InstinctMJ with InstinctMJ.
InstinctMJloads the robot from XML / MJCF, and the resulting joint order is not the same as the joint order used in IsaacLab.- Policy inputs / outputs tied to joint ordering are therefore not directly checkpoint-compatible across different simulator setups.
- Please release and use weights trained in
InstinctMJforInstinctMJtasks.
See CONTRIBUTING.md and CONTRIBUTOR_AGREEMENT.md for contribution requirements.
From the InstinctMJ directory:
# If uv is not installed:
curl -LsSf https://astral.sh/uv/install.sh | sh
uv sync
uv run instinct-list-envsThat is the normal install path. uv sync installs InstinctMJ, resolves the locked MuJoCo / MuJoCo Warp stack, and pulls instinct_rl from the Git source recorded in uv.lock.
Prerequisites:
- Python
3.10to3.13(requires-python = ">=3.10,<3.14"). - Linux x86_64 or macOS arm64.
mjlabmust be next to this directory as../mjlab, becausepyproject.tomlinstalls it editable from that path.
After installation, run training and playback with the instinct_rl-style commands:
uv run instinct-train Instinct-Locomotion-Flat-G1-v0
uv run instinct-play Instinct-Locomotion-Flat-G1-Play-v0 --load-run <run_name>If the virtual environment is active, the console scripts also work without uv run.
If VSCode / Pylance misses local imports in a multi-repository workspace, add these paths to .vscode/settings.json:
{
"python.analysis.extraPaths": [
"<workspace_dir>/InstinctMJ/src",
"<workspace_dir>/mjlab/src",
"<workspace_dir>/instinct_rl"
]
}Registered task IDs:
Instinct-Locomotion-Flat-G1-v0Instinct-Locomotion-Flat-G1-Play-v0Instinct-BeyondMimic-Plane-G1-v0Instinct-BeyondMimic-Plane-G1-Play-v0Instinct-Shadowing-WholeBody-Plane-G1-v0Instinct-Shadowing-WholeBody-Plane-G1-Play-v0Instinct-Perceptive-Shadowing-G1-v0Instinct-Perceptive-Shadowing-G1-Play-v0Instinct-Perceptive-Shadowing-G1-OneMotion-v0Instinct-Perceptive-Shadowing-G1-OneMotion-Play-v0Instinct-Perceptive-HOI-Shadowing-G1-v0Instinct-Perceptive-HOI-Shadowing-G1-Play-v0Instinct-Perceptive-Vae-G1-v0Instinct-Perceptive-Vae-G1-Play-v0Instinct-Parkour-Target-Amp-G1-v0Instinct-Parkour-Target-Amp-G1-Play-v0
Use the CLI to inspect the full list at any time:
uv run instinct-list-envs
uv run instinct-list-envs shadowingTrain:
uv run instinct-train Instinct-Locomotion-Flat-G1-v0
uv run instinct-train Instinct-Perceptive-Shadowing-G1-v0Play (--load-run is required):
uv run instinct-play Instinct-Locomotion-Flat-G1-Play-v0 --load-run <run_name>
uv run instinct-play Instinct-Perceptive-Shadowing-G1-Play-v0 --load-run <run_name>Play perceptive shadowing with released weights:
uv run instinct-play Instinct-Perceptive-Shadowing-G1-Play-v0 \
--load-run <downloaded_run_dir> \
--checkpoint-file <checkpoint_file>Pretrained weights:
- Google Drive: Pretrained weights
Export ONNX for parkour:
uv run instinct-play Instinct-Parkour-Target-Amp-G1-Play-v0 --load-run <run_name> --export-onnxPlay parkour with released weights:
uv run instinct-play Instinct-Parkour-Target-Amp-G1-Play-v0 \
--load-run <downloaded_run_dir> \
--checkpoint-file <checkpoint_file>Parkour pretrained weights:
- Google Drive: Parkour pretrained weights
Before training or playing parkour tasks, update the local dataset root in
src/instinct_mj/tasks/parkour/config/g1/g1_parkour_target_amp_cfg.py:
_PARKOUR_DATASET_DIR = os.path.expanduser("~/your/path/to/parkour_motion_reference")If your filtered motion list is stored elsewhere, also update
filtered_motion_selection_filepath in the same file. See
src/instinct_mj/tasks/parkour/README.md for the task-specific notes.
Module form is also available when console scripts are not on PATH:
uv run python -m instinct_mj.scripts.instinct_rl.train Instinct-Locomotion-Flat-G1-v0
uv run python -m instinct_mj.scripts.instinct_rl.play Instinct-Locomotion-Flat-G1-Play-v0 --load-run <run_name>
uv run python -m instinct_mj.scripts.list_envsWe use pre-commit for formatting and hygiene checks.
Install pre-commit:
pip install pre-commitRun all checks:
pre-commit run --all-filesOr use the local helper command:
uv run instinct-formatTo enable hooks on every commit:
pre-commit installTo preserve your own experiments and logs, it is usually better to create your own task package or repository and reuse the task patterns from InstinctMJ.
If you want to add a new task directly in this repository:
- Create a new folder under
src/instinct_mj/tasks/<your_project>/. - Add
__init__.pyat each package level. - Register tasks with
register_instinct_task(). - Keep the environment config and
instinct_rlconfig colocated in the task package.
Example registration pattern:
from instinct_mj.tasks.registry import register_instinct_task
from .my_env_cfg import MyEnvCfg, MyEnvCfg_PLAY
from .rl_cfgs import my_instinct_rl_cfg
register_instinct_task(
task_id="Instinct-My-Task-v0",
env_cfg_factory=MyEnvCfg,
play_env_cfg_factory=MyEnvCfg_PLAY,
instinct_rl_cfg_factory=my_instinct_rl_cfg,
)