Only !!!!!!!!!!!!!!!!!!!!!!!!!!! in response

#1
by pi-null-mezon - opened

Hi! Thanks for models! Unfortunately this one produces only !!!!!!!!!!!!!!!!!!!... in output. Maybe some ideas why this could happen?

I run on vllm in docker. Previously successgully run same quant of Qwen3.5-27B, but 3.6 does not work properly (

services:
  qwen3.6:
    image: vllm/vllm-openai:nightly
    container_name: qwen3.6-27b
    runtime: nvidia
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              capabilities: [gpu]
              device_ids: ['0', '1']
    ports:
      - "9090:8000"
    volumes:
      - /home/alex/.cache:/root/.cache
    ipc: host
    environment:
      - HF_HOME=/root/.cache
      - VLLM_USE_MODELSCOPE=True
      - CUDA_VISIBLE_DEVICES=0,1
      - VLLM_MEMORY_PROFILER_ESTIMATE_CUDAGRAPHS=1
    restart: always
    command: >
      cyankiwi/Qwen3.6-27B-AWQ-BF16-INT4
      --served-model-name Qwen3.6-27B
      --attention-backend FLASHINFER
      --block-size 32
      --enable-prefix-caching
      --max-num-seqs 4
      --max-model-len 196609
      --max-num-batched-tokens 2048
      --enable-chunked-prefill
      --enable-auto-tool-choice
      --tool-call-parser qwen3_coder
      --reasoning-parser qwen3
      --enable-prompt-tokens-details
      --gpu-memory-utilization 0.8
      --tensor-parallel-size 2
      --host 0.0.0.0
      --port 8000
cyankiwi org

Could you try FLASH_ATTN attention backend instead?

Thanks! With FLASH_ATTN works properly)

I am seeing this happen as well now, but not always. It seems to be happening pretty deep into a thread, maybe around 60k context and above. I've had it happen 3 or 4 times now out of maybe 50 prompts. I am running on vLLM version 0.23.1rc1.dev245+g9037498c2 with this config:

command: --model cyankiwi/Qwen3.6-27B-AWQ-BF16-INT4 -tp 2 --gpu-memory-utilization 0.92 --max-model-len 150000 --max-num-seqs 1 --reasoning-parser qwen3 --tool-call-parser qwen3_coder --enable-auto-tool-choice --speculative-config '{"method":"qwen3_next_mtp","num_speculative_tokens":1}' --enable-prefix-caching --trust-remote-code --default-chat-template-kwargs '{"preserve_thinking":true}'

I tried FLASH_ATTN, and it didn't make any difference. I am interfacing with it through QwenCode, and the !!!!!s seem to happen during the thinking phase. Trying to get some more data. If I find anything, I'll share it here.

Fixed my above issue. I had to disable mtp. Everything is working great for me now.

Sign up or log in to comment