missing files and vllm deploying failed!

#3
by nwzjk - opened

missing files: merges.txt preprocessor_config.json video_preprocessor_config.json vocab.json
I copied them from Qwen/Qwen3.6-27B
And still fail:
ValueError: Following weights were not initialized from checkpoint: {'model.layers.0.self_attn.o_proj.weight', 'model.pre_fc_norm_hidden.weight', 'model.fc.weight', 'model.layers.0.self_attn.k_norm.weight', 'model.layers.0.self_attn.qkv_proj.weight', 'model.norm.weight', 'model.layers.0.self_attn.q_norm.weight', 'model.layers.0.input_layernorm.weight', 'model.layers.0.mlp.down_proj.weight', 'model.layers.0.post_attention_layernorm.weight', 'model.pre_fc_norm_embedding.weight', 'model.layers.0.mlp.gate_up_proj.weight'}

把Qwen/Qwen3.6-27B的文件copy过来能用,用sglang部署成功了

把Qwen/Qwen3.6-27B的文件copy过来能用,用sglang部署成功了
还能识别图片吗?
另外sglang部署的Qwen/Qwen3.6-27B,在claude code中使用存在问题,老是返回空的content

把Qwen/Qwen3.6-27B的文件copy过来能用,用sglang部署成功了
还能识别图片吗?
另外sglang部署的Qwen/Qwen3.6-27B,在claude code中使用存在问题,老是返回空的content
把preprocessor_config.json文件copy过来,使用镜像lmsysorg-sglang:v0.5.10-cu130,然后使用以下参数部署,目前为止使用正常:
SGLANG_CACHE_DIR=/cached-root/cache/carnice-v2-27b-l20/sglang-cached SGLANG_DG_CACHE_DIR=/cached-root/cache/carnice-v2-27b-l20/deep_gemm TRITON_CACHE_DIR=/cached-root/cache/carnice-v2-27b-l20/triton SGLANG_TORCHINDUCTOR_CACHE_DIR=/cached-root/cache/carnice-v2-27b-l20/torch-inductor SGLANG_ENABLE_SPEC_V2=1 SGLANG_ENABLE_CUSTOM_ALL_REDUCE=0 sglang serve --model-path /models/kai-os/Carnice-V2-27b --trust-remote-code --host 0.0.0.0 --port 8000 --tp-size 2 --mem-fraction-static 0.94 --max-running-requests 8 --context-length 262144 --reasoning-parser qwen3 --tool-call-parser qwen3_coder --enable-metrics --enable-cache-report --cuda-graph-max-bs 16

Sign up or log in to comment