File size: 579 Bytes
6405e5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
---
license: apache-2.0
---
There is the docker environment of DOSOD. [Huggingface](https://huggingface.co/datasets/D-Robotics/DOSOD), [Github](https://github.com/D-Robotics-AI-Lab/DOSOD)
## CPU docker usage
- step 1: load docker image
```shell
docker load < dosod_cpu_v1.tar
```
- step 2: start docker container
```shell
docker run -itd \
--name dosod \
--shm-size 128G \
--privileged=true \
-v /mnt/work:/mnt \
-v /mnt/data:/data \
-w /root \
d_robotics/dosod_cpu:v1
```
- step 3: run dokcer container
```shell
docker exec -it dosod bash
``` |