Views
No views yet

1System requirements:
2Ubuntu 20.04 / 22.04
3NVIDIA GPU
4NVIDIA Driver
5Docker
6NVIDIA Container Toolkit
7Conda (optional, only required for local pip installation)
8
9Recommended GPUs:
10RTX 4090, A100, H100, H20
118 GPUs are recommended for training, and 1 GPU is sufficient for deployment inference.1git clone https://github.com/dexmal/opendm.git
2cd opendm
3
4docker run -it --rm --gpus all --network host \
5 --name opendm \
6 --shm-size=16g \
7 -v "$PWD":/app/opendm \
8 -w /app/opendm \
9 dexmal/opendm:latest /bin/bash
10
11# Run from the OpenDM repository root inside the container.
12conda activate opendm
13pip install -e .1conda create -n opendm python=3.10 -y
2conda activate opendm
3
4pip install torch torchvision \
5 --index-url https://download.pytorch.org/whl/cu128
6
7pip install ninja packaging
8MAX_JOBS=2 pip install flash-attn --no-build-isolation
9
10# Enter the OpenDM repository root.
11cd opendm
12pip install -e .1script/dm05_launcher.sh \
2 --exp playground/dm05_so101_lora.py \
3 --task inference \
4 --nproc_per_node 1 \
5 --model-config.model-name-or-path ./checkpoints/DM05-SO101-Pick-Cube \
6 --model-config.chunk-size 50 \
7 --inference-config.output-action-dim 6 \
8 --inference-config.image-keys images_1 images_2 \
9 --inference-config.port 78911@misc{dm05,
2 title = {{DM0.5}: An Open-World Foundation Model for General-Purpose Embodied Intelligence},
3 author = {{Dexmal Team}},
4 month = {July},
5 year = {2026},
6 url = {https://www.dexmal.com/blog/dm0.5/index_en.html}
7}