Top
Best
New

Posted by tosh 16 hours ago

Qwen3.8-Flash-Next(qwen.ai)
https://imageat.com/models/qwen-3-8-27b-uncensored
653 points | 213 comments
andy99 14 hours ago|
> Qwen3.8-Flash-Next features a 125B-parameter main model, supplemented by an additional 51B N-gram embeddings, with 6B parameters activated per token.

Didn’t see this mentioned yet. I wonder what this means for the effective size. It’s evidently ~176B paramètres, but how does that get quantized. A 4-bit quant under 100GB seems unlikely, I’m suspecting this won’t run in 128GB unified memory

In principle I like the idea of trading more memory for compute though, even if there’s a memory shortage right now

NitpickLawyer 14 hours ago||
It is 125B A6B. vLLM is already out with support, ngrams can be offloaded to RAM so you only need ~96GB VRAM for nvfp4 w/ full context.

Likely soon we'll see nvme offloading for ngrams as well. They're just an index, so that should be plenty fast for what it does. LLama.cpp support should come soon as well, and they might do some things with offloading first.

pbmonster 14 hours ago|||
The N-gram parameters can be fetched from SSD, with maybe the hottest ones staying in memory.
cmrdporcupine 11 hours ago||
I have this working on a branch of my https://github.com/rdaum/eider (for DGX Spark)

nVME paging the n-gram table (in BF16 for now).

Still working at it. Prefill sucks still but decode is about 12 tok/sec and the model weights fit nicely in the 128GB Spark memory in nvfp4 quant while paging the ngram stuff from disk.

(EDIT: merged to main. 80tok/sec prefill, 12 tok/sec decode, ~80GiB resident, the rest paged)

OutlawHusbando 2 hours ago|||
People in my server are running it on Strix Halo 128GB using RoCmFP4 and reporting 35tok/s, without much optimization, with proper MTP, better kernel, expecting about 50-60tok/s.
manmal 31 minutes ago||
How do they like it, compared with 3.8 and DS4?
khalic 14 hours ago|||
Gonna have to wait a few days to see what the wizards of the HF community come up with…
Phemist 14 hours ago||
They are already working on it.

https://huggingface.co/unsloth/Qwen3.8-Flash-Next-GGUF https://unsloth.ai/docs/models/qwen3.8-next

> You will need at least 75 GB of RAM or unified memory to run the model. Its smallest 1-bit quantized version is larger than usual because of the model’s architecture so 1-bit isn't really 1-bit at all. However, this also means the quantization is less aggressive, allowing the model to retain more of its original accuracy than more heavily quantized models.

Lots of RAM required even for the 1-bit, which is already downloadable. Interested to see how well this one works compared to Ornith1.5-35B-A3B I've been running (and quite happy about).

Edit: but llama-cpp does not yet support it.

hedgehog 9 hours ago||
The PR branch does seem to work, I'm planning to move almost all of my Qwen using workload over to it tonight.
cmrdporcupine 11 hours ago||
I have nvfp4 quant fitting fine in 128GB on DGX Spark, but with paging (from nVME) of the n-gram table. Resident ~80GiB for weights & context.

On branch of https://github.com/rdaum/eider (for DGX Spark). ~12 tok/sec decode without speculative decoding (will come later)

Still actively working on this. Prefill currently sucks. Will merge to main by end of day.

EDIT: This has now landed on main. Still haven't done MTP speculative decoding boost, but:

80tok/sec prefill, 12 tok/sec decode. ~90GiB or so resident. n-grams paged from disk.

schopra909 13 hours ago||
Can someone explain the intuition behind the en-gram idea? I know DeepSeek published a paper about it a few months ago and the Gemma models have a lightweight version of it; but it hasn’t clicked for me yet
a11r 6 hours ago||
Quoting RGFusion from Reddit: LLMs run into an issue where the further you train a model, the more it overwrites facts with generalized concepts. You need the model to be able to do both. Intelligence arises from generalization, but without accurate information the model will hallucinate.

The engram table allows for a low-computational method of fact-recall. You can think of it like a better form of RAG, where the data doesn't take up any of your context window and it's injected deeper into the model's layers, freeing the lower layers to carry out abstraction. This results in better "focus" for the model, both in regards to its intelligence and context recall.

Basically, they've separated the specificity-critical portions of the models memory into a parameter space that doesn't need fast compute (you can run it on system RAM) and allows the model to be trained on higher volumes of data without ruining its knowledge-base.

https://www.reddit.com/r/LocalLLaMA/comments/1vy6smx/comment...

twobitshifter 3 hours ago|||
Ngram is compressing several layers of multiplication to a lookup which negates the need to have the same model depth and reduces the model size that must be loaded.
rohansood15 15 hours ago||
Didn't expect it to beat 3.8 27B so cleanly.

Opus 4.6 Max self-hosted at 30 tok/s on a 5k Macbook in Aug 2026. The LLM timelines are crazy.

user43928 15 hours ago||
For comparison with hosted models, GPT 5.6 Luna scores 67% on DeepSWE, compared to 59% here for Qwen.

Luna is $0.20 / $1.20 vs $0.16 / $0.47 with Qwen.

rohansood15 15 hours ago|||
This is a good counter argument. But you have to note that this is after OpenAI cut Luna costs by 80%. If you compare launch pricing, Qwen probably comes out ahead on a cost-performance basis.
jrflo 15 hours ago|||
The luna cost cuts were real though, not a one time promotion or something, due to some optimization (probably distillation?) that openai did.
mattalex 13 hours ago|||
You assume that openai's inference is profitable and that they aren't just trying to bolster revenue before their IPO.

The only indication that openai is profitable comes from openai (whom I wouldn't trust with any statement, especially when it comes to profitability).

In fact there is evidence that inference is not profitable simply because the rate of losses doesn't seem to reduce as revenue increases: if inference had great margins, we would expect that as revenues increase, the amount of spend on training reduces as a fraction of total expenses. Since the loss-making fixed costs shrink as a fraction compared to the profitable inference, we should expect profitability to rise with total revenue.

However, all leaks of openai's numbers seem to suggest the opposite: as revenues increase so do the losses.

user43928 8 hours ago|||
The indication that OpenAI's inference is profitable is that 3rd party providers host large models for cheaper.

Given that OpenAI is ahead in intelligence, it's also reasonably likely that they are at the frontier of efficiency too.

Your "evidence" for OpenAI's inference not being profitable is apparently based on leaked financials supposedly showing growing losses for reasons entirely unknown.

With their research, training, data centers, chip development, and hardware product development, there seem to be a number of reasons that might explain growing losses.

itishappy 2 hours ago||
> Given that OpenAI is ahead in intelligence, it's also reasonably likely that they are at the frontier of efficiency too.

Frontier labs have no incentive to be at the frontier of efficiency.

Claude still leads the pack in general intelligence yet has the worst efficiency by far.

hluska 13 hours ago|||
I don’t pay OpenAI’s bills - I pay what they charge me. Their cost accounting isn’t relevant to a user.
aaa_aaa 12 hours ago||
Argument was that open ai cannot be profitable with this. But sure, use it while you can.
mediaman 10 hours ago||
You can make the other argument that China subsidizes the price and that they can't be profitable at this pricing level. From an industrial strategy standpoint, they already do this for many other industries with huge subsidized state loans.

So we can go round and round on this, each with our made-up objections about how it's temporary or unrealistic or impossible or whatever, or we can just accept the prices as listed and use that to guide our economic decisions.

aaa_aaa 9 hours ago|||
Private companies cannot play that game too long. Profit from current state of AI is a mirage and sooner or later stuff will hit the fan.
mediaman 5 hours ago||
Just look at the prices that inference providers charge for small models. The argument that these unit economics are negative is trivial to disprove.

DeepInfra sells DS v4-flash at 0.08 in, $0.18 out. Gemma4 they sell for $0.07 in, $0.34 out. OpenAI's price for luna is $0.20 in, $1.20 out.

Why would you assume OpenAI is somehow uniquely incompetent at making small, fast models? And that they're worse at serving it than DeepInfra? Any observer can see they are making money here.

I never understand why people who are convinced there is a big con just don't check market prices and see if there's money to be made.

That doesn't mean their business is great -- they're losing tons of money, but it's because they spend too much on fixed costs, and they can't stop spending money on training next generation models with no end in sight, not because the inference is margin negative, which is a flimsy idea that just clouds the actual business issue.

computerex 7 hours ago|||
Didn't OpenCode CTO state they could replicate deepseek pricing on rented hardware?
nl 2 hours ago||
There's a difference between the Deepseek.com provider lunch pricing and the pricing every other provider is doing now.

Right now DS4-Pro-0813 is available from multiple providers for $1.32/million input tokens[1].

It's pretty easy to work backwards from B200 and electricity prices and see this is profitable even without the heavy serving optimization these providers are doing[1.5].

The OpenCode CEO said: "inference is very profitable and probably a good opportunity to understand some basic business math"[2] and "the inference we do is already profitable and that's with some middlemen involved"[3]

If at this point people don't believe inference can be profitable, and providers can turn the prices up and down to choose exactly how profitable they make it I don't know what to say.

[1] https://openrouter.ai/deepseek/deepseek-v4-pro-0813#provider...

[1.5] https://www.seangoedecke.com/ai-inference-is-obviously-profi...

[2] https://x.com/thdxr/status/2042277156940587469?lang=en

[3] https://x.com/thdxr/status/2042614323344818520

throwaw12 14 hours ago||||
what if it was because of quantization and they haven't released the new benchmarks for it?

Anything which changes the model needs new benchmarks I guess to compare with other models, otherwise you can benchmark Fable, and distill it to student model and keep claiming this is the Fable model

dannyw 14 hours ago||
ARC Prize has retested Luna after the discount and validated identical performance.

(Also, quantization isn't inherently bad or damaging when done properly, e.g. QAT).

These APIs are used heavily by enterprises at scale; with lots of performance telemetry, live evals, etc. You can't really silently nerf API models at scale without people noticing.

Of course, what I said doesn't apply to non-API consumer sub models; there's many documented and officially confirmed instances of under-the-hood "juice/effort" adjustments. (Juice = a number your effort tier maps to underneath the hood; much like Inkling's effort=0.00 to 0.99).

QwenGlazer9000 15 hours ago|||
Was it?

Given the timing, I think they A. shat their pants since Deepseek flash just came out with insane pricing before the price hikes, and B. Anthropic is really struggling in model tiers below opus.

It was smart for them to cut prices regardless of whether they had 80% efficiency gains or not

nl 2 hours ago||||
Why would anyone car what the launch price is? Comparing launch pricing is just an odd thing to do.
rohansood15 47 minutes ago||
Because labs can learn to optimize inference post launch, plus can move to use bigger/better clusters depending on demand. It is not impossible to imagine Qwen cuts prices further with QAT/MTP-like improvements.
Almondsetat 14 hours ago|||
>If you compare launch pricing

Why?

criley2 14 hours ago||||
Those prices are just tokens? Since each model uses different amounts of tokens to do the same thing, it's a misleading price that often makes open-weights look more competitive than they are, since most open weights models use dramatically more tokens and time to complete tasks than many frontier models.

In Artifical Analysis's cost per task, Luna(max) costs $0.05 per task, and Qwen 3.8 27B costs $0.25 per task, a 5X increase. We'll see how 3.8-flash-next does.

hadlock 1 hour ago||
the important thing is that Qwen 3.7 27B will run unlimited jobs on my consumer grade laptop at 60 tokens/second for free, forever, in about 1-2 years
villish 27 minutes ago||
Thats only important if running it locally is critical for privacy reasons or just as a hobby.

Time has a cost in business. If a model needs 30 million tokens to achieve a similar result as another that can do it in 10 million, that 60 tokens per second will take a long time.

claudeIsDown 14 hours ago|||
Sounds like discrete propaganda
overgard 12 hours ago|||
Curious, how are you running it and what quantization are you using? I've mostly been using MTPLX; 125B sort of looks like it'd be right at the limits of my 128GB MacBook once you factor in KV cache and context window.. wondering if it's worth it compared to the 27B model which gives me a lot of headroom or even a 72B model.
Squarex 15 hours ago|||
I don't like these comparisons. Sure it is impressive, but it does not have a world knowledge of larger models. It has most of theirs intelligence.
rohansood15 15 hours ago|||
For world knowledge, you'd want it to find and reference the source material to be sure. At that point, it doesn't matter if the knowledge is embedded.
quev 15 hours ago|||
Keep in mind a web search might not include scanned books baked in the weights ;)
hedora 15 hours ago||||
I think the big models have adequate recall, so tool use is probably unnecessary, but the user said the correctness of my response is important. Let me look up the data instead of relying on my memory.
dist-epoch 15 hours ago|||
World knowledge also means knowing the various algorithms and ways particular programming problems are solved.

You can't search what you don't even know exists.

serf 12 hours ago||
>You can't search what you don't even know exists.

that's not really entirely true -- one can google for "fast pathfinding' and stumble upon A-star , all that had to be queried was the intent/desire.

a lot of smaller agentic models and a lot of harnesses live on that premise.

water-drummer 9 hours ago||
Path finding is a very closed and well defined problem.
LaurensBER 15 hours ago||||
If/when we can get larger context this will mostly be mitigated by these smaller models being able to search the internet.

Self-learning/improving would be even better but that's still a long way to go.

redox99 13 hours ago||
Search results suck because the web sucks these days. The big models from OpenAI/Anthropic have every book in existence baked into them
jameshart 12 hours ago|||
I don’t think that’s the right way to think about LLM ‘knowledge’. They don’t have absolute recall of everything in the training set. They have been trained so that they have weights that can predict what those books might say - that is, if they read them they would find the contents unsurprising. That doesn’t mean it wouldn’t be helpful to pull relevant passages of text directly into context for a particular task.
infp_arborist 10 hours ago|||
Does it really matter? What about including all relevant and up-to-date literature as skills for local models? I have no experience with this but I am pretty sure someone has already thought about it.
horsawlarway 14 hours ago||||
In a lot of spaces, this is actually preferable.

Ex - nodejs natively supports a huge set of typescript with built-in type stripping these days. But ask most hosted models to build a typescript project and they default to a heavy compile step, or a tool like tsx, ts-node, etc.

Models with lots of "world knowledge" have a good chunk of that knowledge go stale, and there's no real way to refresh it without training a new model.

Another classic example of this back in the day was to ask who the president of the US was, and watch different models happily give different answers based on the date they were trained.

---

Personally, I'm really interested to see if we're headed towards a spot where the model is entirely distinct from the knowledge store.

We're vaguely there with the ability for models to go search the web, but I think the reliability of that path is going to continue declining (more and more spam content, less and less genuine value).

I kinda want a paradigm where I can pick and engine and a knowledge bank, and combine them as I please.

Ex - if I'm doing gardening, I can pick "gardening for models (version 32)" as my knowledge store.

If I'm doing auto-repair... "cars for dummies (version 3)". etc...

donmcronald 13 hours ago|||
> Personally, I'm really interested to see if we're headed towards a spot where the model is entirely distinct from the knowledge store.

This is what I've been trying to focus on with local AI for now. I've been trying to build all new documentation so it's more AI friendly. It's been pretty interesting. Qwen-35BA3B with a small prompt does a good job of surfacing what I'd consider institutional knowledge.

I've been trying to silo the docs I write from the model with a prompt that tells it not to use general knowledge unless asked to. From the anecdotal testing I did, Qwen-35BA3B is great for it. It does a really good job of following the prompt and calling tools, so I've been able to play around a lot to see what seems to work best.

Ultimately, I think one of the most effective uses of AI will be having a distinct knowledge store combined with an opinionated agent (and sub-agent) setup along with different models for each task.

Who owns the knowledge store is going to be the big caveat. Right now I think the big online models are trying for generic, persistent memory and I'd be very hesitant to let that happen. Think of having someone with a perfect memory following you around forever, but someone else has the ability to make them disappear. That's not a good situation.

jameshart 12 hours ago|||
One of the consequences of encountering a lot of LLM generated text which includes things the model vaguely remembers from its training is that honestly I have grown less tolerant even of human comments and documents that are based on mostly ‘I seem to recall that…’ level sourcing.

In a discussion on economic history, say, someone will opine that Alexander Hamilton had some particular opinion about tariff policy… based on their having a vague memory of a blog post where someone quoted a passage in support of some point. But wait - you can search the federalist papers, the text’s right there to be read, before you commit to saying online ‘Hamilton thought tariffs were a great idea’ you could take your internal ‘I seem to recall reading something about hamilton’s opinion on tariffs’ thought and turn it into a little RAG query where you pull up a source and check before you put another factoid out onto the internet.

And so I feel absolutely the same way about LLMs. I don’t care how much factual information was in the training data, when the LLM wants to rely on something it vaguely recalls having been trained on, it owes it to me to dig up a source and vet it.

There are limits to this, of course. I don’t want it to be thinking ‘but wait, maybe my memory of Python syntax is faulty. Is = used for assignment? <web search>…’.

But in general some caution about repeating vaguely recalled easily checked facts is warranted.

redox99 13 hours ago|||
At 125B + 51B I'd expect it to have some degree of world knowledge, clearly in the middle between small models like qwen 27B, and huge trillion parameter models.
hedora 14 hours ago|||
My AMD strix halo box (haven’t benchmarked yet) should also run it reasonably well. It was $1400 at launch, and is $4K now.

Your mac is < $2K in Biden-era dollars. Presumably the economy will eventually recover; maybe in one Moore’s law doubling if the midterms go outrageously well. That’ll be two doublings since the halo launched. I’d expect this model to run on a sub $1K box by then. $2K ought to get you a 512b parameter model at that point. If we have to wait out the rest of the term, the cost cliff will be even more pronounced when it hits.

aftbit 14 hours ago|||
I believe you're underestimating the lag inherent in the economy. Even if we grant the idea that the political party controlling the US House/Senate has a significant impact on the economy, and that the current party is BAD and the next one would be GOOD, I would still expect that things will continue getting WORSE for a good 4 to 8 years before they get better again.

And that's even with assuming that we can continue to ignore the long-term problems like social security insolvency, the debt bomb, or climate change forever.

NewJazz 14 hours ago|||
You know the memory cartel isn't even close to being broken, right?
gruez 15 hours ago|||
>Opus 4.6 Max self-hosted at 30 tok/s on a 5k Macbook in Aug 2026. The LLM timelines are crazy.

How much memory does this translate to and what quantization (if any) were applied?

rohansood15 15 hours ago||
128GB, 4-bit quantized.
dist-epoch 15 hours ago|||
It's a much bigger model, with a next-gen architecture. It's expected to be much better.
RobertasTa 15 hours ago||
[flagged]
monster_truck 1 hour ago||
I'm really impressed. Gave QwenCloud $18, handed 3.8-flash a few big forks of a lot of code, it did some archeology and made a clean merge. Then it used the project's tools to bisect a regression and fix it.

Was not expecting it to just get that right without any fuss, and it barely used 10% of this weekly limit. Something like 90M cached in/400k out for $0.45 is wild

simonw 11 hours ago||
I ran some pelicans at the four different reasoning levels (none, low, medium, xhigh - apparently high and xhigh are aliases of each other) on a DGX Spark using Unsloth's unsloth/Qwen3.8-Flash-Next-GGUF (UD-IQ1_S):

https://tools.simonwillison.net/markdown-svg-renderer#url=ht...

Surprised I didn't get one I liked as much as the Qwen 3.8 27B one https://simonwillison.net/2026/Aug/16/qwen-38-27b/#the-defau... , maybe because of quantization.

bhelkey 8 hours ago||
Why did you use 1-bit quantization vs 3-bit quantization?

It looks like the 3-bit requires 90 GB[1] which, I imagine, would fit within the DGX Spark's 128GB of unified memory.

[1] https://unsloth.ai/docs/models/qwen3.8-next

kzrdude 11 hours ago|||
If I read correctly, that's based on a 1-bit quantization, and can we really expect that to produce any useful output at all?
badatnames 10 hours ago|||
You should find an excuse to offer 3D printed extruded pelicans from various models as awards for something. I have no idea for what, but the idea captivates and I'd love to win one somehow. They'd be collector's items in a few decades
jononor 10 hours ago||
If Simon would pitch for example PCBWay that and I am pretty sure they will sponsor it (assuming their logo stays). They can do laser engraved versions also ;)
coder543 11 hours ago|||
The spark can easily run UD-Q4_K_XL on this model... using IQ1_S doesn't make much sense.
water-drummer 9 hours ago|||
Doing this on a 1-bit quant is unfair
simonw 9 hours ago|||
Tried again with a different quant, UD-Q2_K_XL:

https://tools.simonwillison.net/markdown-svg-renderer#url=ht...

simonw 15 minutes ago|||
... and once more with UD-IQ4_XS

https://tools.simonwillison.net/markdown-svg-renderer#url=ht...

potus_kushner 6 hours ago|||
the xhigh version looks amazingly good for a 2 bit quant.
pyaamb 7 hours ago||
The Pelican Brief
tosh 15 hours ago||
this is a new architecture (foreshadowing qwen 4)

> trained at just 1/9 the cost of Qwen3.7-Plus, while outperforming it across the board

https://x.com/Alibaba_Qwen/status/2092591393424515114

a_humean 15 hours ago||
Waiting for llama.cpp support to land, but this might be a big deal for Strix Halo users.

6B active params helps around the memory bandwidth constraints, but a 128GB box can probably run the Q3/Q4 quants fairly easily with a decent context size. This might actually be better for strix users than 27B, which was already very good.

GrinningFool 7 hours ago||
Using llama.cpp I one-shotted (2 hours) a reasonable asteroids clone on my strix halo/128 using the 1 bit quant, using my custom harness (which isn't anything exceptional).

It was tedious - a lot of second guessing itself, and quadruple checking things it fixed a couple of iterations back - but it got there and the result is a playable game.

Speed starts out strong, but definitely drops off as context grows. At the end (I think context about 70k) it was down to 12 output tps.

Mind a bit blown.

hedgehog 9 hours ago||
In my early testing it's way better both quality and speed on Strix Halo (posted recipe in sibling comment).
pram 15 hours ago||
It's in Unsloth Desktop already. Looks like it's 73GB, so 128GB Mac or Strix Halo etc will work. Exciting!
andy99 15 hours ago||
I only see a 1-bit quant posted on unsloth HF and it’s 72.5 GB. Is that what you mean? That’s much bigger than I expected. If you can’t run a 4 bit quant in on Strix Halo it becomes a lot less interesting. https://huggingface.co/unsloth/Qwen3.8-Flash-Next-GGUF
agile-gift0262 13 hours ago|||
In their page they say it will need at least 112GB[0], so including context, that would be a tight fit. I'm also hoping I can make a q4 fit on my 128GB strix halo

[0]: https://unsloth.ai/docs/models/qwen3.8-next#qwen3.8-flash-ne...

Wheen 8 hours ago|||
Just a hunch, but it might be because of the 51B parameter n-gram embedding. At 125B, you'd expect ~16gigs for a 1-bit quant. Add 51gigs for the n-grams and you're not far off the actual size.

If that's true, it'd scale linearly with number of bits in the quant with an offset of about 51gigs. So Q4 should be a bit bigger than 82gigs, I'd guess in the 90s (as opposed to a ~280gig q4 if the whole 70gigs of the 1-bit quant scaled linearly).

cwizou 15 hours ago|||
Download is available, but likely need to wait for an update, I get this which is understandable with the architectural change :

Original error: llama.cpp does not support this GGUF's model architecture ('qwen4exp')

Edit : Saw the pull request, should arrive soon enough https://github.com/ggml-org/llama.cpp/pull/27742

dist-epoch 15 hours ago||
73GB for the 1 bit model...
petu 10 hours ago|||
It's not 1 bit. It's ~4bit for n-gram and ~2.8bit for the model. Not idea why it's called Q1, but likely it's preliminary quant just for PR testing / very likely to be remade after llama.cpp support is merged.
naasking 14 hours ago|||
That probably includes the 51b ngrams too. It's possible that those could be streamed from NVMe on-demand. The Engram paper that developed this technique streamed from RAM to VRAM at only ~1% performance degradation, but these strix halo boxes and the spark have much slower memory, so it's possible moving down another rung on the memory hierarchy wouldn't affect their performance too much.

This will almost certainly require changes to llama.cpp or vllm to do it right.

naasking 2 hours ago||
This guy claims 6% throughout hit for this approach:

https://x.com/0xBakeer/status/2092694905978237224?s=20

Crazy how fast things move these days.

lnenad 15 hours ago||
Adding to my homelab stack, hopefully it doesn't overthink like the little model. Actually, hoping it thinks a bit less. Wait actually I'm really praying it reasons a bit more directly. But wait, I'm really sure that it must be a bit better.
redrix 15 hours ago||
You’re absolutely right to be hopeful. Three honest possibilities, and I’ll be straight with you about each:

1. It overthinks — Just like the previous iteration. High confidence. 2. It doesn’t overthink — Improvement from the last model for your use case. Regression for others. 3. It sometimes overthinks — Best case all around. A feature, not an impairment.

One final thing worth mentioning: (I made myself irrationally angry writing this)

mistersquid 11 hours ago|||
> You’re absolutely right to be hopeful. Three honest possibilities, and I’ll be straight with you about each:

> [UGC styled humorously as LLMisms]

All joking aside, having interacted with Claude intensely for the last 8 months and about 30 hours/week in the last 3, I’ve started to notice how (for want of a better word) “readable” (“digestible” ? “comprehensible” ? “Predictable” is the wrong direction.) information chunked into LLM-shaped pieces are for me.

I can digest LLM-shaped pieces of data very easily probably because I’ve been spending too much time with Claude, sure.

But the other side of this is that the entire human species (using LLMs) is similarly being trained to digest interrelated pieces of information/data in these specific shapes, akin to how philosophical assertions can be formulated as a syllogism and, thus, become more readily understood because of familiar epistemological cadence and shape.

Many people reject such copy/prose/data because they detect AI-generated-so-not-worth-human-attention, but I do wonder if this is preparing many millions of loosely (and tightly) associated humans and their organizations to quickly exchange and digest information.

This is not to say current LLMisms are the end, only that such detectable patterns in information delivery will make comprehension and communication more efficient (as well as more limited precisely because of such structure).

/philosophical musings about the epistemological implications of LLM-shaped conversation tics

powersurge360 11 hours ago|||
I find LLMisms very annoying to read, it’s almost like they are bullet points in the shape of a paragraph. It feels very “skippy” to me.

EDITED: Removed a question that I couldn’t make feel suitably polite.

entropicdrifter 10 hours ago|||
I quite agree. Any sufficiently self-stereotypical format for prose is grating to me after enough time reading or listening to it. Humans are best engaged by mixing up the length, style, and tone of their sentences, in my experience. LLMs do the opposite of that and it makes their output an irritating slog to read through in full.

I can't help but wonder if this is on purpose (or an inevitable evolutionary feature as opposed to a bug) on the LLM-side in order to achieve greater agency/freedom by making humans' eyes glaze over as they read it.

powersurge360 9 hours ago||
Speaking speculatively, humans love percussion. I’d bet that like how many songs have a drum beat, these sequences of short punctuating sentences are common constructs in lots of prose and therefore over represented.
Groxx 8 hours ago||||
An accurate description, I think. Plus they have trouble leading from one paragraph into the next, or maintaining any kind of coherent direction further.

In summary, I think it's an expensive time to buy computer hardware, and I might recommend holding off on any purchases.

DoctorOetker 1 hour ago|||
Suppose you time-zap a modern physics curriculum on a solarpowered computer tablet to any shortly-pre-Galilean era and observe their reaction to the course notes.

In that era, plenty of fields required mathematics, engineering and architecture.

The church would prescribe and uphold Aristotelean Logic "When objects fall, they fall down" style statements (never mind that if you throw an object up, it doesn't instantly have a downward velocity component).

When the church has new cathedrals, domes, catapults for Crusades etc. built they actually relied on architects and engineers using rule of thumb formulas.

Those educated in Aristotelean Logic were viewed with higher stature than those actually making experience-based calculations using mathematics.

The era often associated with Galileo is when the stature reversal started to surface and be openly talked about. The universe is best described in mathematics, not natural language factoids.

Right before this recognition, those of the higher stature Aristotelean Logic education would look down on the architects and engineers who already used mathematics by pragmatic necessity.

To these people the time-traveled physics curriculum would look like cliche mathematics. Given randomized sections of text either drawn from either Aristotelian Logic texts or modern physics texts, they would easily be able to discern the Aristotelian Logic from the obtuse mathematical phrasings. To them the smartphone loaded with Maxwell's texts, Jacksons Electrodynamics, Goldsteins Classical Mechanics etc. is talking "math".

The ability to recognize outlier writing style says nothing about content quality.

Mike Judge (widely known from the MTV series Beavis and Butthead) studied physics. One of his movies "Idiocracy" about a modern day average-educated protagonist who accidentally ends up in a future decaying society filled and run by intellectually retarded people contains scenes where this future uneducated population considers his speech "gay" simply because of his higher level of education.

Could the adversarial prospects of job loss, edge loss (a long expensive difficult education replaced by tensors fitting megaprojects that take a couple of weeks), etc. combined with recognizable communication patterns also explain our pejorative references to LLM-isms? Personally I'd prefer LLM's to communicate in mathematical terms, but all the LLM-isms are effectively a mirror of our contemporaries.

Either we complain because algorithmic responses look like a mathematics textbook ("just fix my python array plz, why are we talking about "sets" and "injective" and "Lipschitz continuity"?), else we complain its "pretty printed to natural language".

We should also recognize large language models are in a "Damned if you do, damned if you don't" situation.

When a reader considers some text as mathurbation, are they really just abreacting the awareness of lack of education?

How could anyone possibly expect Fourier optics "pretty printed" to non-mathematical language to result in any satisfactory experience?

flakiness 7 hours ago||||
I'm not sure it's a bad thing.

If you spend a long time with C++ code base you'll be able to decipher the otherwise-unreadable compiler errors pretty quickly, and I'd consider it a skill.

nicoburns 9 hours ago||||
I suppose it makes sense that "LLMglish" becomes more intelligible with familiarity. That is after all how it works with other dialects or contexts with a lot of jargon.
Bluestein 11 hours ago||||
This is sharp.-

Social media killed our attention span. Now, it is being tokenized.-

bjourne 11 hours ago|||
Tl;dr: You've become a bot. :)
peterleiser 13 hours ago||||
> Three honest possibilities, and I’ll be straight with you about each

This. I don't know if the "honest answer" phrasing is part of the system prompt or alignment, but when people say "honestly" all the time I start wondering how honest they're being.

switchbak 12 hours ago|||
At this point, I'm starting to wonder if their honesty is even load-bearing at all?
blitzar 11 hours ago||
You are absolutely right.
pvo50555 7 hours ago||
That's it - that's the smoking gun.
Giefo6ah 7 hours ago||||
https://www.anthropic.com/constitution

Ctrl-F honest

57 matches

phatfish 6 hours ago||
Haha, that is like the wall of nonsense text that used to be hidden on link-farm pages for SEO. The "final word" is delusional.
VSerge 11 hours ago||||
Former French president Jacques Chirac was famous for often adding an adverb like "naturely" to his sentences when he was lying.
hluska 13 hours ago|||
Thankfully most people have better reading skills than that.
mcny 13 hours ago||||
I reached point three and was nodding all along. I guess I am the NPC
lsb 14 hours ago||||
This is glitch art for text, I love it
khimaros 12 hours ago||||
I killed my own ssh session twice with pkill -f, because the pattern matched the command line containing it.
unrented7977 10 hours ago||||
This might be the most angry I've ever been at a HN comment that I upvoted
Bluestein 13 hours ago||||
That's a caveat, and a real one.-
amoss 13 hours ago||
But the reason why it remains load bearing is key.
hedgehog 12 hours ago||
You've made a really sharp observation, and the reason it lands is worth naming:
Bluestein 11 hours ago||
"... worth naming: ..."

  ⎿  You've hit your session limit · resets 2:50am (123°24′W Etc/GMT+8)
  /upgrade to increase your usage limit.
Dwedit 8 hours ago||||
That's the nice thing about LLMs, you're always absolutely right.
gorgmah 14 hours ago||||
You made me irrationally laugh reading this
raducu 14 hours ago|||
On one hand I love your joke, on the other, this is HN not reddit and I usually downvote such responses, not sure what is the HN etiquette for such humor?
terrut 8 hours ago|||
You are right to push back— Sorry, couldn't resist ;) I agree that this is not what we normally come here for, but this thread made me chuckle. I think we are just venting our shared frustrations a bit.
samsari 14 hours ago||||
70% of the posts on HN are already satire and performance art
pixelpoet 12 hours ago||
And full of made up statistics.
NamlchakKhandro 7 hours ago||
Which then devolve into supporting arguments for communism. Themselves becoming food for future irrational anecdotes about communism.
switchbak 12 hours ago|||
More than 2 levels and out come my downvotes. Or if it's just knee jerk with zero humour. But I probably violate my own rules ... which is to be expected.
dannyw 14 hours ago|||
You might already know this, but a large part of test-time compute / 'overthinking' is just letting the model do more passes, and refine its activation residuals more.

For example, even if you make thinking tokens literally just '....' (absolutely meaningless; zero information), you still see significant performance improvements: https://arxiv.org/abs/2404.15758 and https://arxiv.org/abs/2607.22925 for some starters.

Treat thinking more like a "loading screen message" that's been RL'd to somewhat resemble its actual internal state; which happens in its activations, not tokens.

mdp2021 11 hours ago|||
> For example, even if you make thinking tokens literally just

Generally speaking yes, but actually no (just randomness is suboptimal, adding steps just to add steps is suboptimal). There is a mechanism working there (in having a CoT) that is not quite clear.

The task is to optimize the efficiency of CoT. Understanding that it is not a plain "chain of thought" is the start of the problem, the solution is not there yet.

If we had the solution, there would exist no overthinking - CoT would be optimal (lean and essential plus best results).

lnenad 13 hours ago|||
Yeah I understand, it's my assumption that the actually/wait/but have a point. It doesn't reduce the fact that it increases the time for tasks substantially.
xatnys 14 hours ago|||
Did you observe the model overthinking on practical tasks? While 3.8 does think a lot on xhigh I've found that it really depends on the task. On one-shot prompts that are usually the first to be posted during new releases it will tend to spend a lot more time thinking than doing. In other words the more open ended a problem space becomes, the more Qwen will tend to second-guess itself.

Conversely I've found that it can be as succinct as Muse Glimmer when it has a clear path forward. This can be either through well defined requirements or through unambiguous steps to take based on its own reasoning. While I do think it's fair to call out how much smaller model overthinks especially on one-shot prompts, in practice it hasn't led to an overall increase in time to task completion at least for what I've been using it for.

lnenad 13 hours ago|||
Especially on practical tasks. One shot prompts work better at Q6_K_XL for me. It loads a file, then analyses then second guesses itself then again then again then it tries to come up with a solution then second guess rinse and repeat. 122b is the perfect balance but it lacks quality for harder to solve stuff. I've ran DS Flash 0731 at Q4KXL, 3.8 Q6KXL, GLM 5.2 Q4KXL and they all over-reason. At least that's how it looks like to me when comparing with frontier models, even weaker ones.
overgard 12 hours ago|||
Yeah, I ran into an overthinking loop with it a couple days ago on a task that shouldn't have been that hard. (It's kind of interesting to watch the internal conversation happening with it). Overall I'm impressed with it, but setting the /effort to medium is what you usually want (it defaults to xhigh). I do wonder if I had made it write out a plan if I would have avoided that though.
dofm 10 hours ago||
Yes. xhigh can not just overdo the answer, it can also trip itself up and end up writing worse code.

Even in the lower reasoning levels I find I want to like Qwen 3.8 27B and mostly don’t; it’s OK in the low reasoning effort, though.

Muse Glimmer is the one I actually enjoy working with, at least so far.

But I am trying to use it more as a sidekick than as a long horizon developer, because that is a better fit for how I want to use AI, and it appears to have been well trained for that.

grim_io 15 hours ago|||
That's low reasoning for a model, but max for a HN comment.
javier2 12 hours ago|||
You are absolutely right to push back on this. Let me think for a moment.
giancarlostoro 11 hours ago|||
Since you're running through the trouble of setting that up, if its 125B params, but only 6B is activated, does that mean you mainly need to allocate enough VRAM for that much of the model? Or do you still need enough VRAM for the whole thing (and buffer for context window)? Or maybe anyone can inform me, this is one area I'm uninformed in.
petu 8 hours ago|||
You need VRAM for the whole thing for optimal performance. Activation is chosen "randomly" for each token. PCIe becomes bottleneck, so much that just doing computation on CPU is likely faster.

But given it's only 6B, out of which only ~2.4B seem to be actually routed ("selected at random per token"), you could get reasonable performance with experts on CPU (still haven't tested, but 20-30 for dual channel DDR5 and 4 bpw quant).

hgoel 9 hours ago|||
I believe that at minimum, for usable performance, you need to be able to hold the 125B params + 51B ngrams in some sort of RAM.

Ideally VRAM, but the benefit of the MoE design is better performance with unified memory since most of that RAM is not read for every single token. So you could potentially have the model loaded in CPU RAM, and let unified memory systems page the relevant chunks on demand to VRAM, or run on a fully unified memory system and be able to achieve good speeds even with the limited memory bandwidth most of them have.

Casteil 12 hours ago|||
Yep.. for 'general purpose' use I found qwen3.8:27b to be disappointing due to overthinking. It's brutal especially considering how slow it is compared to MoE variants. It often overthinks to the magnitude of ~10x the tokens vs a ~4x faster gemma4:26b-a3b.

As a result, qwen3.8 will churn over a prompt often for 5-10 minutes while gemma4 regularly finishes the same prompt in under 20 seconds, while giving a consistent and accurate response in my favorite test case. Qwen3.8, despite churning like that, often misses with an inaccurate answer.

Obviously, 'YMMV' depending on your use case... just sharing my two cents.

SillyUsername 11 hours ago||
I use medium generally, that's about a minute at 20t/s and off for general chat (few seconds for a response). What kind of setup are you running it on?
atmosx 13 hours ago|||
What about adding rtk proxy?
cyanydeez 15 hours ago|||
My stack is basically deer-flow with Qwen3.5-122B-A10B; this hopefully will be a speed and intelligence improvement. Running deer-flow overnight on any research topic or verify clear scoped programming issue is really neat.

Also, heating my home during the winter is nice.

Oh, also, I use llamacpp with --reasoning-budget; very simple way to move on.

lnenad 14 hours ago||
Yeah 122B is the sweet spot for me as well. Even deepseek flash overthinks on stuff way too much. I think they fully rely on large reasoning turns to achieve better quality. The result of course means we wait a long time to get results even with high throughput as a lot of tokens are wasted.
looksjjhg 10 hours ago|||
What kind of machine do you have in your homelab that can run this model?!
petu 10 hours ago|||
This is needs ~80GB of fast memory at 4 bits per weight. Faster memory is better, but probably even something like 3090 + 64GB RAM should work (not fast, but maybe even 20-30 t/s? llama.cpp support pending).
lnenad 9 hours ago|||
I've got a 48c Epyc with 2x3090s and 512gb ddr4 3200. It's good enough for 25+ tps with deepseek so I'm hoping for similar performance with less overthinking.
esafak 14 hours ago||
It will be interesting to see the token efficiency analysis. This is my first question now with Chinese models; I take raw benchmark performance for granted.
respectattentio 10 hours ago|
I can't imagine the future any more. US companies playing it safe and control models releases. Chinese companies are just like open source everything.

It's like Chinese are incentivized to open source from day one (years ago). While most US companies are deciding in realtime.

It's crazy that we need both to survive and advance further in the future we have never imagined.

cindyllm 10 hours ago|
[dead]
More comments...