Docker image lna-lab/gemma4-inference:latest does not exist

#1
by Vossk123 - opened

Error response from daemon: pull access denied for lna-lab/gemma4-inference, repository does not exist

@Vossk123 You're right β€” that Docker image reference is stale. My apologies. The model card pre-dates our actual deployment recipe. I've just updated the README to use the upstream image:

docker run -d --name huihui-qwen36-27b \
  --gpus '"device=0"' --shm-size=16g \
  -v /models/Huihui-Qwen3.6-27B-abliterated-NVFP4:/models/current:ro \
  -p 8000:8000 \
  vllm/vllm-openai:cu130-nightly \
  --model /models/current \
  --trust-remote-code --quantization modelopt --language-model-only \
  --reasoning-parser qwen3 \
  --enable-auto-tool-choice --tool-call-parser qwen3_xml \
  --default-chat-template-kwargs '{"preserve_thinking":true}' \
  --enable-prefix-caching --enable-chunked-prefill \
  --max-model-len 131072 --gpu-memory-utilization 0.95 \
  --kv-cache-dtype fp8_e4m3

If you want MTP-accelerated decode (~85 β†’ 130 tok/s on a single Blackwell card), the sibling sakamakismile/Huihui-Qwen3.6-27B-abliterated-NVFP4-MTP is the same model with the MTP head restored β€” add --speculative-config '{"method":"qwen3_5_mtp","num_speculative_tokens":3}' to the launch.

Thanks for the heads-up.

β€” Tonoken3 / Lna-Lab

Sign up or log in to comment