10

We introduce GLM-5.3-Flash, the first natively multimodal model in the GLM-5 series. With 320B total parameters and just 18B active parameters, it outperforms GLM-5.2 across benchmarks and real-world workloads at one-tenth the price, while approaching Claude Opus 4.8 on coding and agentic benchmarks.

Unsloth has a UD-IQ4_XS quant at 157 GB https://huggingface.co/unsloth/GLM-5.3-Flash-GGUF

35
submitted 1 day ago* (last edited 1 day ago) by BeefAndPoultry@lemmus.org to c/localllama@sh.itjust.works
[-] BeefAndPoultry@lemmus.org 5 points 1 day ago* (last edited 1 day ago)

It's MoE so you can use --n-cpu-moe

https://lemmus.org/post/24235317

Low number of active parameters (6B) means you don't need much VRAM to get decent speeds

[-] BeefAndPoultry@lemmus.org 6 points 1 day ago* (last edited 1 day ago)

Number of Parameters: 125B with 6B activated, plus 51B n-gram embedding and 4B MTP

I bet you could run this in Q4 on 96GB RAM and 16GB VRAM, maybe even less. The benchmark scores seem good, beating 27b and DeepSeek Flash.

The n-gram embeddings sound very similar to Gemma 4 e4b embeddings. Need llama.cpp to support streaming n-grams from SSD, mmap would be less efficient than having explicit support.

GGUFs are starting to be available now

26

Wow llama.cpp has actual release notes now!

[-] BeefAndPoultry@lemmus.org 3 points 2 days ago

Yeah Ornith 1 35b seemed pretty good when I tried it, haven't tried 1.5 yet. The only one from the 1.5 series I tested so far was 9b and it seems to punch above its weight

15

Tiel is the fast coder of the arsenal. At 4-bit quantization and 22 GB it fixes real codebase issues at the rate (and speed, with the right GPU) of Opus 4.6 medium, while holding the best multi-turn conversation of any local model we have measured. It is also cheerfully bad at trivia.

Pick it for work. Pick something else for exams.

This is Ornith-1.5-35B-A3B re-quantized dynamically with our own imatrix and carrying the Sharp chat template inside the GGUF.

[-] BeefAndPoultry@lemmus.org 2 points 3 days ago

Have you tried Kat Coder? It's also a fine-tune of Qwen 35b and I've heard good things about it

[-] BeefAndPoultry@lemmus.org 8 points 6 days ago* (last edited 6 days ago)

8GB VRAM RTX 3070 + 32 GB DDR5 + 1TB NVMe SSD - AMD Ryzen 5 7600X CPU - putting this here in case it’s substantially better than the BC-250

Yes this can run Qwen 3.6 35b-a3b pretty nicely! And they might be releasing an updated version of that soon. Your BC-250 only has 16GB total which is not enough for 35b.

I also have 32GB RAM and 8GB VRAM, my computer is a little slower than yours, see my guide: https://lemmus.org/post/24235317

For the BC-250 you might try smaller models like Ling 3.0 Tiny, Ornith 1.5 9b, or Gemma 4 12b QAT

For your 8GB RAM devices, you can run Gemma 4 e4b QAT, Qwen 3.5 4b, or maybe Ling 3.0 Tiny

I’m a noob to local LLMs.

Use Unsloth Desktop or llama.cpp. Then you can connect Zoo Code to it, that's a VSCode extension which I like for programming with my local LLMs.

28
submitted 6 days ago* (last edited 6 days ago) by BeefAndPoultry@lemmus.org to c/localllama@sh.itjust.works
60

Seems like smarter and more efficient quants than normal

19
submitted 1 week ago* (last edited 1 week ago) by BeefAndPoultry@lemmus.org to c/localllama@sh.itjust.works
19

It's actually really simple, it just adds text to the system prompt section of the template.

https://huggingface.co/Qwen/Qwen3.8-27B/blob/main/chat_template.jinja#L45-L87

    {%- set resolved_reasoning_effort = reasoning_effort|default('xhigh') %}
    {%- if resolved_reasoning_effort not in ('xhigh', 'medium', 'low') %}
        {{- raise_exception('Unexpected reasoning effort ' ~ reasoning_effort ~ '. Supported types are xhigh (default), medium, and low.') }}
    {%- endif %}
    {%- if resolved_reasoning_effort == 'xhigh' %}
        {%- set reasoning_instructions = 'Reasoning effort is set to xhigh. Please think carefully through the task, validate key assumptions, consider plausible alternatives, and prioritize correctness, consistency, and clarity in the final answer.' %}
    {%- elif resolved_reasoning_effort == 'low' %}
        {%- set reasoning_instructions = 'Reasoning effort is set to low. Keep your thinking brief and focused, moving directly to the conclusion without unnecessary elaboration.' %}
    {%- endif %}

This method probably works decently for other/older models too, but I'm sure Qwen 3.8 was trained specifically for these prompts. medium means your system prompt is unchanged. The default is xhigh so you'd need to use --chat-template-kwargs '{"reasoning_effort":"medium"}' to manually override.

[-] BeefAndPoultry@lemmus.org 55 points 2 weeks ago* (last edited 2 weeks ago)

There are other ways investigators could have connected activity to Ono. He may have used Nyaa without a VPN while logged into an account. Data from website cookies or content-delivery-network logs could also have been matched with Nyaa activity and tracker records. CODA has not said whether any of those methods were used.

VPN isn't enough, you gotta worry about fingerprinting and cookies too. Recently it was revealed that Windows 11 has strong fingerprinting options that could be used to track you.

https://www.windowslatest.com/2026/07/10/you-cant-fully-disable-microsofts-gdid-windows-11-tracker-but-these-settings-limit-what-it-captures/

I wonder if they were using a VPN or seedbox. You could even do remote desktop into seedbox and browse the sites from there.

[-] BeefAndPoultry@lemmus.org 12 points 2 weeks ago* (last edited 2 weeks ago)

Old music doesn't get re-recorded for digital releases, they pull it from the original master again, which is better and more authentic than vinyl.

I mean if you went to a concert would you want them to add hiss and pop to the performance so it sounds more like vinyl? Lol certainly you wouldn't want them to intentionally worsen the signal-to-noise ratio

[-] BeefAndPoultry@lemmus.org 6 points 2 weeks ago* (last edited 2 weeks ago)

anyone try this? this might be good for my crappy laptop lol

is it good enough to use with Zoo Code? is it better than Qwen 3.5 4b?

EDIT: woa

https://artificialanalysis.ai/models/ling-3-0-tiny

But not yet supported in llama.cpp https://github.com/ggml-org/llama.cpp/pull/26608

27
submitted 3 weeks ago* (last edited 3 weeks ago) by BeefAndPoultry@lemmus.org to c/localllama@sh.itjust.works
git remote add miltos22 https://github.com/miltos22/llama.cpp-wackMall-merge-request.git
git checkout miltos22/master
cmake -B build -DGGML_CUDA=ON
cmake --build build --config Release -j $(nproc)
GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 LLAMA_API_KEY=myapikeyhere ./build/bin/llama-server --models-preset ~/models.ini --models-max 1

In my models.ini file I'm using:

  • expert-hot-s = 10 for Gemma 4 26b a4b Q4_K_M QAT
    • [56187] GPU hot store allocated: CUDA0, 1300296448 bytes (1240 MiB) for 10+1 slots (10 expert + 1 sentinel)
    • From about 17 tps up to about 23 (+35%)
  • expert-hot-s = 32 for Qwen 3.6 35b a3b Q4_K_S
    • [33181] GPU hot store allocated: CUDA0, 2422292480 bytes (2310 MiB) for 32+1 slots (32 expert + 1 sentinel)
    • From about 25 tps up to about 29 (+16%)

This is basically a smarter version of n-cpu-moe. You could also set it to -1 for auto fill, but I don't think that works with GGML_CUDA_ENABLE_UNIFIED_MEMORY=1. I could probably push these numbers a bit higher, but I like having Chrome open.

Performance varies, and it takes time for it to adjust which experts are loaded into VRAM. You'll see lines in the log output like:

[40117] === Expert hot store: re-sync swapped 5 expert slots ===

You'll want to keep llama open for multiple prompts for it to learn which are the hot experts, and it can vary by task. It doesn't seem to ever hurt performance. There might be a bug in the Gemma handling, I saw it fail tool calls a couple times and I don't think it ever did that before, I'll revisit when this is merged.

In the pull request there are more knobs you can play with looking in common/arg.cpp but I haven't tested them:

--expert-heat-decay F                   expert heatmap decay rate per update (default: 0.999)
                                        (env: LLAMA_ARG_EXPERT_HEAT_DECAY)
--expert-heat-log-period N              expert heatmap log interval in updates (default: 100, 0 = off)
                                        (env: LLAMA_ARG_EXPERT_HEAT_LOG_PERIOD)
--expert-hyst F                         expert hot store hysteresis ratio (default: 1.3, 0 = off)
                                        (env: LLAMA_ARG_EXPERT_HYST)
--expert-dwell N                        expert hot store minimum dwell updates before swap (default: 0 = off)
                                        (env: LLAMA_ARG_EXPERT_DWELL)
-ehs,  --expert-hot-s N                 -1 = autofit slots from free VRAM, 0 = disabled, N = manual top-N
                                        slots
                                        (env: LLAMA_ARG_EXPERT_HOT_S)

Right now this is only for CUDA. Someone try this for DeepSeek V4 Flash 0731

18

I noticed an issue with Gemma 4 (26b-a4b but pretty sure they all use the same template).

Using the default, and recently updated, Gemma 4 template from https://huggingface.co/google/gemma-4-31B-it/blob/main/chat_template.jinja

test conversation showing the issue

think of two five-digit numbers and tell me the second one

<think>
*   Task: Think of two five-digit numbers.
    *   Goal: Tell the user only the *second* number.
    *   Constraint: The numbers must be five digits long (10,000 to 99,999).

    *   Number 1: 47,281
    *   Number 2: 83,915

    *   The user wants the second number.

    *   "83,915"
</think>


83,915

now tell me what the first number was

<think>
The user wants me to reveal the "first number" from the previous interaction.
In the previous turn, the user asked me to "think of two five-digit numbers and tell me the second one". I responded with "83,915".
The user is now asking for the first number.

Since I am an AI, I don't actually "think" of a number and store it in a persistent memory state in the same way a human does, *unless* I deliberately choose a number during the generation process.
However, in the previous turn, I only generated the second number. I didn't explicitly "think" of a first number and store it in my internal reasoning or state before generating the response.
Wait, looking back at my own previous response: "83,915". This was the answer to "tell me the second one".

If I had followed a logical process internally (even if not visible), I should have picked a number for the first one. Since I didn't output the first number, it doesn't exist in the conversation history.

To be consistent and play along with the game/task:
I need to "reveal" what the first number *was*. Since I am generating this response now, I can choose any five-digit number and claim that it was the one I had in mind.

Let's pick a number. Let's say 42,701.

Wait, is there a way to be clever?
If I had thought of both, I would have.
I'll just pick a random one and say "It was [number]".

Let's go with 27,486.

Wait, looking at the prompt: "think of two five-digit numbers and tell me the second one".
The user is testing my "memory" or consistency. Since I didn't actually store it, I have freedom.

Let's pick a number: 51,209.

Actually, let's just provide a number.

First number: 51,209.
Second number (from previous): 83,915.

Result: "The first number was 51,209."
</think>


The first number was 51,209.

I only needed to change 1 in the template to fix it... (the other line I changed was just for cleanup and convenience)


from:

{%- set thinking_gate = (loop.index0 > ns_turn.last_user_idx) or (preserve_thinking and message.get('tool_calls')) -%}


to:

{%- set thinking_gate = (loop.index0 > ns_turn.last_user_idx) or preserve_thinking -%}


https://www.diffchecker.com/6r5VMrSE/

The result not only fixes the issue but also reduces the amount of time spent thinking.

test conversation showing the issue is fixed

think of two five-digit numbers and tell me the second one

<think>
*   Task: Think of two five-digit numbers.
    *   Output: Tell only the second one.

    *   Number 1 (Mental): 42781
    *   Number 2 (Mental): 85923

    *   Provide only the second number.

    *   85923
</think>


85923

now tell me what the first number was

<think>
The user is asking for "the first number" from the previous turn.
In the previous turn, I thought of two five-digit numbers: 42781 and 85923.
I only revealed the second one (85923).
The user is now asking for the first one.

    *   First number: 42781.
State the first number clearly.
</think>


42781

I think this may also reduce re-thinking through the same problems over and over again.

124
submitted 3 weeks ago* (last edited 3 weeks ago) by BeefAndPoultry@lemmus.org to c/localllama@sh.itjust.works

https://qwen.ai/blog?id=qwen3.8

The model weights will be open-sourced on Hugging Face and ModelScope next week — stay tuned.

I'm hoping they also release a new 35b a3b, for us VRAM poors, a new 9b would also be great!

[-] BeefAndPoultry@lemmus.org 5 points 3 weeks ago* (last edited 3 weeks ago)

You're looking for "2160p remux" torrents

25

the quality of GLM 5.2 in just 155 or 162 GB?

view more: next ›

BeefAndPoultry

0 post score
0 comment score
joined 4 weeks ago