You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -91,16 +91,19 @@ Training on a mixed dataset of 740K samples from LLaVA-OneVision and 800K sample
91
91
- Docker with NVIDIA GPU support
92
92
- CUDA-compatible GPU(s)
93
93
94
-
### Mount NFS
94
+
### Mount Data Storage (Optional)
95
95
96
-
```bash
97
-
mkdir -p /video_vit
98
-
mount -t nfs4 -o minorversion=1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport cfs-iyHiNUmePn.lb-0a25b0a7.cfs.bj.baidubce.com:/ /video_vit
96
+
If using shared storage for datasets, mount your NFS/CFS volumes:
99
97
100
-
mkdir -p /vlm
101
-
mount -t nfs4 -o minorversion=1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport cfs-xvbkSb1zPT.lb-563926be.cfs.bj.baidubce.com:/ /vlm
98
+
```bash
99
+
mkdir -p /video_vit /vlm
100
+
mount -t nfs4 -o minorversion=1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport <your-nfs-server>:/ /video_vit
101
+
mount -t nfs4 -o minorversion=1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport <your-nfs-server>:/ /vlm
102
102
```
103
103
104
+
> [!NOTE]
105
+
> Replace `<your-nfs-server>` with your actual storage endpoint. Internal users should refer to the internal documentation for specific mount configurations.
106
+
104
107
### Docker Build
105
108
106
109
#### Option 1: Build from Dockerfile
@@ -122,8 +125,8 @@ docker tag $(docker images -q | head -n 1) llava_vit:25.11.22
122
125
123
126
```bash
124
127
docker run -it --gpus all --ipc host --net host --privileged \
125
-
-v "$(pwd)":/workspace/OneVisionEncoder \
126
-
-w /workspace/OneVisionEncoder \
128
+
-v "$(pwd)":/workspace/OneVision-Encoder \
129
+
-w /workspace/OneVision-Encoder \
127
130
llava_vit:25.11.22 bash
128
131
```
129
132
@@ -135,12 +138,24 @@ docker run -it --gpus all --ipc host --net host --privileged \
135
138
```bash
136
139
docker run -it --gpus all --ipc host --net host --privileged --cap-add IPC_LOCK \
0 commit comments