iic/GUI-Owl-1.5-32B-Instruct 模型坐标不准确
Author: southwinfCreated Jun 29, 2026Updated Jun 29, 2026
哈喽, 我们自己部署的iic/GUI-Owl-1.5-32B-Instruct模型,但是坐标一直不准确,偏差比较大,agent操作一直不正确 部署方式是用的docker部署: 脚本如下:
version: "3.1"
services:
prefill:
restart: always
image: vllm/vllm-openai:v0.21.0
volumes:
- ~/models/GUI-Owl-1.5-32B-Instruct/:/models/GUI-Owl-1.5-32B-Instruct/
- ~/models/GUI-Owl-1.5-32B-Instruct/.cache:/root/.cache
ipc: host
ports:
- "9888:80"
command:
--model /models/GUI-Owl-1.5-32B-Instruct/
--host 0.0.0.0
--port 80
--served-model-name gui-owl
--enable-prompt-tokens-details
--enable-auto-tool-choice
--tool-call-parser qwen3_coder
--tensor-parallel-size 2
--gpu-memory-utilization 0.7
# --reasoning-parser qwen3
deploy:
resources:
reservations:
devices:
- driver: nvidia
device_ids: ['4,5']
capabilities: [gpu]可以帮我看看问题在哪吗?
Source: X-PLUG/MobileAgent