vllm errors models size might be too big
This commit is contained in:
parent
197212aacb
commit
741a07bbc4
1 changed files with 12 additions and 8 deletions
|
|
@ -32,15 +32,19 @@ spec:
|
|||
- name: VLLM_TOKENIZER_MODE
|
||||
value: "auto"
|
||||
args:
|
||||
- "--model"
|
||||
- "Jiunsong/supergemma4-26b-abliterated-multimodal" # Uncensored Abliterated Gemma 26B (Native)
|
||||
- --dtype=auto
|
||||
- "bfloat16"
|
||||
- --max-model-len=8192
|
||||
- --model=Jiunsong/supergemma4-26b-abliterated-multimodal
|
||||
- --host=0.0.0.0
|
||||
- --port=8000
|
||||
- --tensor-parallel-size=1
|
||||
- --gpu-memory-utilization=0.78 # ← Critical: lower than default 0.90
|
||||
- --max-model-len=16384 # Start conservative (you can raise to 32768 later)
|
||||
- --max-num-batched-tokens=8192
|
||||
- --max-num-seqs=4 # Lower for single-user / low-concurrency
|
||||
- --enforce-eager # Disables CUDA graphs → big memory saver at startup
|
||||
- --disable-custom-all-reduce
|
||||
- --trust-remote-code
|
||||
- --gpu-memory-utilization=0.80
|
||||
- --enforce-eager
|
||||
|
||||
- --dtype=auto
|
||||
- --limit-mm-per-prompt=image=1,video=0 # Optional: limit vision if not heavily using images yet
|
||||
ports:
|
||||
- containerPort: 8000
|
||||
resources:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue