Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -132,7 +132,24 @@ for res in output:
132
  - Method 2: vLLM method
133
 
134
  [vLLM: PaddleOCR-VL Usage Guide](https://docs.vllm.ai/projects/recipes/en/latest/PaddlePaddle/PaddleOCR-VL.html)
135
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  2. Call the PaddleOCR CLI or Python API:
137
  ```bash
138
  paddleocr doc_parser \
 
132
  - Method 2: vLLM method
133
 
134
  [vLLM: PaddleOCR-VL Usage Guide](https://docs.vllm.ai/projects/recipes/en/latest/PaddlePaddle/PaddleOCR-VL.html)
135
+
136
+ Please change the startup command from
137
+ ```bash
138
+ vllm serve PaddlePaddle/PaddleOCR-VL \
139
+ --trust-remote-code \
140
+ --max-num-batched-tokens 16384 \
141
+ --no-enable-prefix-caching \
142
+ --mm-processor-cache-gb 0
143
+ ```
144
+ to
145
+ ```
146
+ vllm serve PaddlePaddle/PaddleOCR-VL-1.5 \
147
+ --trust-remote-code \
148
+ --max-num-batched-tokens 16384 \
149
+ --no-enable-prefix-caching \
150
+ --mm-processor-cache-gb 0 \
151
+ --served-model-name PaddleOCR-VL-1.5
152
+ ```
153
  2. Call the PaddleOCR CLI or Python API:
154
  ```bash
155
  paddleocr doc_parser \