1git clone https://github.com/RLWRLD/RLDX-1.git
2cd RLDX
3uv sync --python 3.10
4uv pip install -e .
1from rldx.policy.rldx_policy import RLDXPolicy
2from rldx.data.embodiment_tags import EmbodimentTag
3
4policy = RLDXPolicy(
5 model_path="RLWRLD/RLDX-1-FT-GR1",
6 embodiment_tag=EmbodimentTag.GENERAL_EMBODIMENT,
7 device="cuda:0",
8)
9
10action = policy.get_action(observation)
1uv run python rldx/eval/run_rldx_server.py \
2 --model-path RLWRLD/RLDX-1-FT-GR1 \
3 --embodiment-tag GENERAL_EMBODIMENT \
4 --host 0.0.0.0 --port 20000
To reproduce the benchmark numbers end-to-end, see
run_scripts/eval/gr1_tabletop/README.md.
For the full architectural walkthrough see
docs/architecture.md.
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. Conditioned on the GR-1 humanoid embodiment. For other
robots, finetune from
RLDX-1-PT
or
RLDX-1-MT-ALLEX for
the most generalist initialization.
1@article{rldx2026,
2 title={RLDX-1 Technical Report},
3 author={Kim, Dongyoung and Jang, Huiwon and Koo, Myungkyu and Jang, Suhyeok and Kim, Taeyoung and others},
4 year={2026},
5 note={RLWRLD},
6 eprint={2605.03269},
7 archivePrefix={arXiv},
8 url={https://arxiv.org/abs/2605.03269}
9}
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.