Views
No views yet
Qwen/Qwen3-1.7B-Basemax_seq_len=32768 (Llama 3 RoPE scaling from 8192) — data truncated to 8K but RoPE precomputed to 32K so positions past 8K stay in distributioneos_token_ideos_token_id: [151643, 151645] so vLLM stops at both <|endoftext|> AND <|im_end|> (Qwen3 chat-template turn boundary). The default base model only includes 151643; SFT-trained models that aren't patched will keep generating past the natural turn end until max_tokens.1from vllm import LLM, SamplingParams
2
3llm = LLM(model="AlienKevin/SWE-ZERO-10K-Qwen3-1.7B-Base", max_model_len=32768)
4params = SamplingParams(temperature=1.0, max_tokens=4096)
5# Use the Qwen3 chat template; the eos_token_id list will be picked up automatically.