The model is unstable and may enter an infinite loop.

#2
by Salormatik999 - opened

I launched it in agent mode using kilo code. After 30,000 tokens, the model started repeating the same thing and doing the same thing. I use this quantum POCKET-35B-Q4_K_M.gguf. The model is really fast, but not stable.

FINAL_Bench org

I launched it in agent mode using kilo code. After 30,000 tokens, the model started repeating the same thing and doing the same thing. I use this quantum POCKET-35B-Q4_K_M.gguf. The model is really fast, but not stable.

Hey, thanks a lot for the detailed report β€” and glad the speed is treating you well! πŸ™

That looping after ~30k tokens is a known behavior of this Qwen3.5-family model, and it's almost always a sampling issue in agent mode rather than the weights. Kilo Code tends to run near-greedy, and without a presence penalty these models can fall into repetition on long generations.

Could you try:
temp 0.7, top_p 0.8, top_k 20, min_p 0, presence_penalty 1.5 (avoid temp 0).

That fixes the loop in the vast majority of cases. If it still repeats past 32k, it may be context-length/RoPE scaling β€” let me know your context window setting and I'll dig in. We'll also add these recommended params to the model card. Thanks again! πŸš€

Thank you very much for your attention. It really helped to expand the number of tokens to 65k. llama-server.exe ^ -m POCKET-35B-Q4_K_M.gguf ^ --host 127.0.0.1 --port 5008 ^ -c 64536 ^ -t 8 -tb 11 --mlock ^ --batch-size 1024 --ubatch-size 512 ^ -ctk q8_0 -ctv q8_0 ^ --temp 0.6 --top-p 0.8 --top-k 20 --min-p 0 --presence-penalty 1.5 ^ --jinja -ngl 0

Sign up or log in to comment