Is this unusable

#1
by void009 - opened

Hi. I got this to test on a 128gb strix halo. I gave it simple prompts like tetris, flappy bird in html. It gives me a very short result that includes some nonsense, repetition of tags etc. I also tried a settlers of catan prompt, while the planning phase seems to go reasonably well, when building it gets stuck outputting the tt.. sequence endlessly. Not sure I am doing something wrong.

HIP_VISIBLE_DEVICES=0 \
llama-server \
  --model "$HOME/models/IQ4_XS/Hy3-REAP-200B-GGUF-IQ4_XS-00001-of-*.gguf" \
  --chat-template-file "$HOME/models/hyv3_opensource_chat_template.jinja" \
  -ngl 999 -c 110000 -t "$(nproc)" \
  -ctk q8_0 -ctv q8_0 \
  --no-warmup --no-mmap \
  --host 0.0.0.0 --port 8080

GGML_VULKAN=1 \
llama-server \
  --model "$HOME/models/IQ4_XS/Hy3-REAP-200B-GGUF-IQ4_XS-00001-of-*.gguf" \
  --chat-template-file "$HOME/models/hyv3_opensource_chat_template.jinja" \
  -ngl 999 -c 65000 -t "$(nproc)" \
  --no-warmup --no-mmap \
  -np 2 \
  --host 0.0.0.0 --port 8080

tested with both rocm and vulkan, q8/q16 kv

thank you for feedback
will check

did you try to change repeat penalty, topp, topk, temperature?

please try enabling thinking mode for coding
and can adjust repeat, temperature,topk

i tested on AMD w7900 x 2 (96GB)

 ./llama-server -m YOUR_MODEL_PATH -fa 1 -ctk q8_0 -ctv q8_0 --no-mmap  --top-k 40 --top-p 0.9 --temp 0.6 --repeat-penalty 1.1 --chat-template-kwargs '{"reasoning_effort": "high"}'

could make block break game with 20k token thinking..

please note
model is still experimental version. please stay tuned :)

I tested with your settings, and now it is completely broken. in opencode, it thinks for 20 minutes and no output, even for a hello. In webchat, i say hello, it says aiaiaiaiaiaiaiaiaia.. hilarious

i removed -fa 1 and now it produces normal output. perhaps llamacpp bug, if yours is fine. do you use vulkan or rocm/

Sign up or log in to comment