Paper · Project page · Code · Models
RLDX-1 is a general-purpose Robot Foundation Model designed for dexterous manipulation. Powered by a Multi-Stream Action Transformer (MSAT), it seamlessly unifies multimodal perception (visual + tactile), high-DoF actuation, and memory-aware decision-making in a single architecture. RLDX-1 achieves state-of-the-art performance across diverse simulation benchmarks and is fully validated on real-world hardware.
This repository hosts RLDX-1-PT-IMG: a lightweight, image-input
variant of the RLDX-1-PT, which uses 4-frame video inputs. This trades a
minimal drop in success rate for a substantially lighter and faster
policy, making it well suited to real-time and resource-constrained
deployment. It is pre-trained on the same broad mixture of public manipulation
corpora, providing a lightweight starting point for rapid experimentation on
new embodiments and tasks.
This card describes RLDX-1-PT-IMG (vision foundation checkpoint). The full
RLDX-1 model family:
| Checkpoint | Description | Params | Embodiment Tag |
|---|---|---|---|
RLDX-1-PT | Multi-source pretrained foundation | 6.9B | per-dataset |
RLDX-1-PT-IMG | Image-input (single-frame) pretrained foundation (this repo) | 6.9B | per-dataset |
RLDX-1-VLM | Qwen3-VL-8B vision-language backbone | 8B | — |
RLDX-1-FT-ROBOCASA | RoboCasa Kitchen 24-task finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-FT-RC365 | RoboCasa-365 cross-task finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-FT-LIBERO | LIBERO 4-task suite (goal, object, spatial, long) finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-FT-SIMPLER-GOOGLE | SIMPLER Google VM/VA finetune | 6.9B | OXE_FRACTAL |
RLDX-1-FT-SIMPLER-WIDOWX | SIMPLER WidowX finetune | 6.9B | OXE_BRIDGE_ORIG |
RLDX-1-FT-GR1 | GR-1 Tabletop finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-MT-DROID | DROID mid-train | 8.1B | OXE_DROID |
RLDX-1-MT-ALLEX | All add-ons (memory + motion + physics + video) | 8.1B | GENERAL_EMBODIMENT |
git clone https://github.com/RLWRLD/RLDX-1.git
cd RLDX
uv sync --python 3.10
uv pip install -e .
from rldx.policy.rldx_policy import RLDXPolicy
from rldx.data.embodiment_tags import EmbodimentTag
policy = RLDXPolicy(
model_path="RLWRLD/RLDX-1-PT-IMG",
embodiment_tag=EmbodimentTag.OXE_FRACTAL,
device="cuda:0",
)
action = policy.get_action(observation)
RLDX-1-PT-IMG is pretrained on a multi-source mixture, so for direct
inference pair it with the embodiment tag matching your data source — e.g.
OXE_FRACTAL, OXE_BRIDGE_ORIG, OXE_DROID, GALAXEA, AGIBOT_GRIPPER,
AGIBOT_DEXHAND, NEURAL_GR1, HUMANOID_EVERYDAY_G1,
HUMANOID_EVERYDAY_H1, etc. For custom robots, finetune.
RLDX-1-PT-IMGuv run python rldx/experiment/launch_train.py \
--base-model-path RLWRLD/RLDX-1-PT-IMG \
--dataset-path /path/to/your/dataset \
--embodiment-tag GENERAL_EMBODIMENT \
--video-length 4 --n-cog-tokens 64 \
--global-batch-size 64 --learning-rate 1e-4 \
--max-steps 60000 --save-steps 5000 \
--output-dir ./outputs/my_finetune
To enable add-ons (memory / motion / physics) see the recipes in the
main README and the
training.md
guide.
video_length=1, vs the
4-frame video input of RLDX-1-PT), state proprioception, language
instruction.action_horizon=16).Qwen/Qwen3-VL-8B-Instruct.use_memory=use_motion=use_physics=false) and only activate
when the corresponding flags are wired during finetuning (see
RLDX-1-MT-ALLEX).For a full architectural walkthrough see
docs/architecture.md.
Intended use. Research on robotic manipulation, finetuning on custom embodiments, simulation benchmarking, and non-commercial real-robot deployment under the conditions of the RLWRLD Model License v1.0.
Out of scope. Commercial deployment, military or weapons applications,
non-consensual surveillance, and any use that violates applicable laws or
regulations. See LICENSE.md §3.5 for the full list.
Limitations. Performance depends heavily on embodiment match and data
distribution. The pretrained checkpoint is OXE-conditioned and is not
guaranteed to work zero-shot on novel embodiments without finetuning.
Memory, motion, and physics modules are dormant in RLDX-1-PT-IMG and only
activate when the corresponding flags are wired during finetuning (see
RLDX-1-MT-ALLEX).
@article{rldx2026,
title={RLDX-1 Technical Report},
author={Kim, Dongyoung and Jang, Huiwon and Koo, Myungkyu and Jang, Suhyeok and Kim, Taeyoung and others},
year={2026},
note={RLWRLD},
eprint={2605.03269},
archivePrefix={arXiv},
url={https://arxiv.org/abs/2605.03269}
}
Released under the RLWRLD Model License v1.0 — a non-commercial license
with attribution and share-alike requirements. See LICENSE.md for
the full text. By using this model you agree to those terms, including the
use restrictions in §3.5.
9 commits
Paper · Project page · Code · Models
RLDX-1 is a general-purpose Robot Foundation Model designed for dexterous manipulation. Powered by a Multi-Stream Action Transformer (MSAT), it seamlessly unifies multimodal perception (visual + tactile), high-DoF actuation, and memory-aware decision-making in a single architecture. RLDX-1 achieves state-of-the-art performance across diverse simulation benchmarks and is fully validated on real-world hardware.
This repository hosts RLDX-1-PT-IMG: a lightweight, image-input
variant of the RLDX-1-PT, which uses 4-frame video inputs. This trades a
minimal drop in success rate for a substantially lighter and faster
policy, making it well suited to real-time and resource-constrained
deployment. It is pre-trained on the same broad mixture of public manipulation
corpora, providing a lightweight starting point for rapid experimentation on
new embodiments and tasks.
This card describes RLDX-1-PT-IMG (vision foundation checkpoint). The full
RLDX-1 model family:
| Checkpoint | Description | Params | Embodiment Tag |
|---|---|---|---|
RLDX-1-PT | Multi-source pretrained foundation | 6.9B | per-dataset |
RLDX-1-PT-IMG | Image-input (single-frame) pretrained foundation (this repo) | 6.9B | per-dataset |
RLDX-1-VLM | Qwen3-VL-8B vision-language backbone | 8B | — |
RLDX-1-FT-ROBOCASA | RoboCasa Kitchen 24-task finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-FT-RC365 | RoboCasa-365 cross-task finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-FT-LIBERO | LIBERO 4-task suite (goal, object, spatial, long) finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-FT-SIMPLER-GOOGLE | SIMPLER Google VM/VA finetune | 6.9B | OXE_FRACTAL |
RLDX-1-FT-SIMPLER-WIDOWX | SIMPLER WidowX finetune | 6.9B | OXE_BRIDGE_ORIG |
RLDX-1-FT-GR1 | GR-1 Tabletop finetune | 6.9B | GENERAL_EMBODIMENT |
RLDX-1-MT-DROID | DROID mid-train | 8.1B | OXE_DROID |
RLDX-1-MT-ALLEX | All add-ons (memory + motion + physics + video) | 8.1B | GENERAL_EMBODIMENT |
git clone https://github.com/RLWRLD/RLDX-1.git
cd RLDX
uv sync --python 3.10
uv pip install -e .
from rldx.policy.rldx_policy import RLDXPolicy
from rldx.data.embodiment_tags import EmbodimentTag
policy = RLDXPolicy(
model_path="RLWRLD/RLDX-1-PT-IMG",
embodiment_tag=EmbodimentTag.OXE_FRACTAL,
device="cuda:0",
)
action = policy.get_action(observation)
RLDX-1-PT-IMG is pretrained on a multi-source mixture, so for direct
inference pair it with the embodiment tag matching your data source — e.g.
OXE_FRACTAL, OXE_BRIDGE_ORIG, OXE_DROID, GALAXEA, AGIBOT_GRIPPER,
AGIBOT_DEXHAND, NEURAL_GR1, HUMANOID_EVERYDAY_G1,
HUMANOID_EVERYDAY_H1, etc. For custom robots, finetune.
RLDX-1-PT-IMGuv run python rldx/experiment/launch_train.py \
--base-model-path RLWRLD/RLDX-1-PT-IMG \
--dataset-path /path/to/your/dataset \
--embodiment-tag GENERAL_EMBODIMENT \
--video-length 4 --n-cog-tokens 64 \
--global-batch-size 64 --learning-rate 1e-4 \
--max-steps 60000 --save-steps 5000 \
--output-dir ./outputs/my_finetune
To enable add-ons (memory / motion / physics) see the recipes in the
main README and the
training.md
guide.
video_length=1, vs the
4-frame video input of RLDX-1-PT), state proprioception, language
instruction.action_horizon=16).Qwen/Qwen3-VL-8B-Instruct.use_memory=use_motion=use_physics=false) and only activate
when the corresponding flags are wired during finetuning (see
RLDX-1-MT-ALLEX).For a full architectural walkthrough see
docs/architecture.md.
Intended use. Research on robotic manipulation, finetuning on custom embodiments, simulation benchmarking, and non-commercial real-robot deployment under the conditions of the RLWRLD Model License v1.0.
Out of scope. Commercial deployment, military or weapons applications,
non-consensual surveillance, and any use that violates applicable laws or
regulations. See LICENSE.md §3.5 for the full list.
Limitations. Performance depends heavily on embodiment match and data
distribution. The pretrained checkpoint is OXE-conditioned and is not
guaranteed to work zero-shot on novel embodiments without finetuning.
Memory, motion, and physics modules are dormant in RLDX-1-PT-IMG and only
activate when the corresponding flags are wired during finetuning (see
RLDX-1-MT-ALLEX).
@article{rldx2026,
title={RLDX-1 Technical Report},
author={Kim, Dongyoung and Jang, Huiwon and Koo, Myungkyu and Jang, Suhyeok and Kim, Taeyoung and others},
year={2026},
note={RLWRLD},
eprint={2605.03269},
archivePrefix={arXiv},
url={https://arxiv.org/abs/2605.03269}
}
Released under the RLWRLD Model License v1.0 — a non-commercial license
with attribution and share-alike requirements. See LICENSE.md for
the full text. By using this model you agree to those terms, including the
use restrictions in §3.5.
9 commits