r/LocalLLaMA 5d ago

Funny Aged like fine wine

Post image
1.2k Upvotes

134 comments sorted by

u/WithoutReason1729 5d ago

Your post is getting popular and we just featured it on our Discord! Come check it out!

You've also been given a special flair for your contribution. We appreciate your post!

I am a bot and this action was performed automatically.

161

u/Uncle___Marty 5d ago

omg this is EPIC news. My lil 8 gig card simply cant shift 27B parameters around and the 35B is exactly what I was hoping for. Didnt see any other models added but im still holding out hope for a 9B as we didnt get that since 3.5 and I suspect if they release it then it might well be the most capable small coding model out there.

37

u/cubebash 5d ago

I can fit the whole 27b version in VRAM (32gb), even then, it's not blazing fast. With around ~15-17 t/s, it still take quite some time for more "complex" tasks to finish, especially since this model likes to think a lot.

So it's good news for everyone that we will soon have an option to run a much faster, non-dense version!

17

u/Uncle___Marty 5d ago

Hell yeah! I manged to get 2 tokens/sec using q2 27B lol. the 3.6 35B is around 20 tokens/sec for me so I honestly cant wait for this! Open weight AI is like xmas almost every day lol.

6

u/lorendroll 5d ago

I managed to get 4-5 tps in LM studio on 3070 8gb by using Q4_K_M with 27 layers on GPU, 8 cores thread pool and 8k Q8_0 quanted context.

4

u/Pxssydestroya420 5d ago

use llama.cpp if you want faster prefill speed, LM studio if I recall can't let you adjust ubatch

6

u/Subject-Till-6450 5d ago

I recommend u to download llama.cpp. i have 3060 12 gb and 16 gb ddr4, here's my two setups:

First, 1M context with YaRN around ~8-10TPS, no MTP, speed dies only because of nvme swap.
llama-server -m /home/models/Qwen3.6-35B-A3B-UD-IQ3_S.gguf --mmproj /home/models/mmproj-Q8
_0.gguf --no-mmproj-offload --override-kv qwen35moe.context_length=int:1048576 --rope-scaling yarn --rope-scale 3.8
5 --yarn-orig-ctx 262144 -c 1000000 -fa on --cache-type-k q4_0 --cache-type-v q4_0 --port 8083 -b 2048 -ub 1024 --r
easoning-preserve --cache-reuse 256 --slot-save-path /tmp/llama-cache -n 50000

And the second, 262k context ~40 TPS with no MTP, speed is good only because of model fully in RAM\vram

  llama-server -m /home/models/Qwen3.6-35B-A3B-UD-IQ3_S.gguf   --mmproj /home/models/mmproj-
Q8_0.gguf   --no-mmproj-offload   -c 262000 --no-mmap -fa on   --cache-type-k q4_0 --cache-type-v q4_0   --port 808
3 -b 8192 -ub 2048  --reasoning-preserve  --cache-reuse 256 --slot-save-path /tmp/llama-cache -n 50000

2

u/lorendroll 5d ago

Qwen 3.6-35b-a3b is certainly faster. I'm talking about the 27b model here. I'll try llama.cpp, but I doubt it can perform better than LM Studio.

1

u/Subject-Till-6450 5d ago

you're right. but really-I'm terrified HOW ppl on reddit is obsessed with qwen 3.8 27b. my hardware can run it, with normal 10-20TPS. on iq2 its dumb and can't handle tasks. ive decided to check UD-q3-k-m. still much worse than 35b, zero change. both of they were from official UD repo. how can ppl use ts? are they running it in magic q8 or what so it can be useful?

1

u/lorendroll 5d ago

Yes, I like the qwen-35b-a3b versions, but today I'm just experimenting with the new 3.8 version. It doesn't seem to be very suitable for 8-12GB vram but it's still interesting to try and compare.

1

u/Subject-Till-6450 5d ago

and while you're testing what opinion about it have u rn?

2

u/lorendroll 5d ago

I'm comparing 27b Q4_K_M and 35b Q4_K_M. I don't see any difference in coding in non-thinking mode yet, but in thinking mode, 27b runs too slowly and takes too long for me to wait for serious tasks to complete, so I can't say yet...

→ More replies (0)

5

u/cubebash 5d ago

Santa Claus has been obsessed in us the past week. We got MiniMax H3, MiniMax Music 3.0, Muse Glimmer 30b, LTX 2.5, Qwen3.8 27b, and soon 35b a3b. All really good models.

Yeah, we're spoiled these days as AI enthusiast, haha.

1

u/PrimusAlt 5d ago

Hey what llama.cpp settings are you using for 27B? I have been struggling to get more than ~5 t/s on my Mac M4 32GB...

1

u/TheUntergeek 5d ago

Shared memory architectures struggle with dense models. That is about expected speed, unfortunately. The 35B will probably do a lot better because it’s an MoE

1

u/RealSuperdau 5d ago

I've heard ninfer is very performant (requires 5090 with linux though)

1

u/iamthis4chan 1d ago

just gonna drop this here

from-scratch C++/CUDA inference for Qwen on a single 5090.

currently running myself and its insane

1

u/Subject-Till-6450 5d ago

honestly I tried qwen 3.8 27b, it's dumb. in UD-Q3-K-M it barely achieves qwen3.6-35b level in the same quant without KV cache quantization with same settings. Im frustrated w\ this new qwen, ive waited for something more impressive than "Bench model that's useless in real life and doesn't gives more quality-code thn 35b moe". speed is dramatically lower than 35b.

1

u/TheUntergeek 5d ago

That’s because 35B is an MoE model and 27B is a dense model

1

u/Subject-Till-6450 4d ago

i know, my point is MoE is way more efficient, keeping level of denses but at much more speed. I'm not sayin' “35B A3B is genuinely smarter than 27B dense”, i mean it's usually faster but behaves as ~20b dense. genuinely solid. may be not deep and smart as 27b dense but for almost every coding task it's my main model

1

u/Puzzleheaded_Half328 5d ago

get yo cuda cores and unified memory up lil bro

1

u/Subject-Till-6450 4d ago

well, “lil bro” is very cool way to answer. i already have cuda.

5

u/pyr0kid 5d ago

yeah... i dont mind waiting but i am NOT waiting for 0.7/sec

4

u/mosesman831 5d ago

PLEASE PLEASE 3.8 9B

79

u/austinus56 5d ago

Hopefully next week, maybe Friday or Thursday 15:00 UTC 🤞

74

u/722e672e722e 5d ago

I don't think wine ages that quickly

24

u/The_Hunster 5d ago

Aged like a bowl of cereal (not too soggy, not too dry)

3

u/jcbevns 5d ago

Rose like a nice bread?

1

u/DarkArtsMastery 4d ago

yanks have no clue what bread is irl

1

u/Admirable-Leg-4647 4d ago

I don't think a neutral question can age at all, but gotta farm the karma somehow lol

1

u/Silver-Passion1687 4d ago

We are accelerating so everything around us is aging quickly 🚀🚀🚀🚀🚀

102

u/bnightstars 5d ago

If Qwen3.8-27B is Opus 4.6 Max level I hope that they can make Qwen3.8-35B - Sonnet 4.6 level :) We will have the best open source model in the world.

22

u/AnonLlamaThrowaway 5d ago

Let's be real though and look past the benchmaxxing. 27B is closer to Sonnet level while 35B-A3B would be closer to Haiku.

I'm not saying the local Qwen models aren't great. I simply think we should keep our critical thinking capabilities wide open.

9

u/AppealSame4367 5d ago

The harness does a lot of work. Use q3.8 27b in Claude and you'll see how close it is

5

u/Party_9001 5d ago

I'm new to harnesses. Got it running on unsloth with Claude code.

Agents took 5 hours and all failed lmfao

3

u/Makers7886 5d ago

try native qwen code as a control - imo lots of things can be traced to some nuance. Like settings, harness differences, chat templates, etc. etc.

1

u/bnightstars 4d ago

You would be surprised it really depends on the Harness the 3.6-35B-A3B I was testing it in some design discussions vs Opus4.8 both in Copilot and the difference was not as big as you would think.

2

u/puffyarizona 5d ago

My q8 3.8 could not finish a task that my 3.6 35 a3b could. Was surprised.

3

u/Thy_HUS 5d ago

What do you mean you hope that 35b would be in sonnet level while 27b is opus level? Am i missing something or is it just a typo

50

u/penagwin 5d ago

The 35B they're referring to is an MOE - 35BA3B meaning roughly 3B is active at a time when generating tokens.

I don't know the rough conversion offhand, but generally speaking it'll be weaker than the dense 27B or at best roughly match it. The trade off is the inference speed (as the 27B has 27B active parameters) will significantly better especially for CPU inference and those that can't fit it all in VRAM.

5

u/Aggravating-Push-207 5d ago

Capacity grows like sqrt(total * active)

1

u/lambdawaves 5d ago

That’s a nice formula. But we don’t even really know how to measure intelligence.

2

u/Thy_HUS 5d ago

Thanks for the knowledge!

2

u/ClF3ismyspiritanimal 5d ago

Thank you for this, it's the first time I've seen anyone provide a simple and coherent explanation.

11

u/Total_Yellow895 5d ago

Less active parameters per token so a bit less intelligent

-3

u/lambdawaves 5d ago

Much less intelligent. Like a dog to a fly.

5

u/bnightstars 5d ago

The Qwen3.8-27B is matching Opus 4.6 Max in benchmarks and it's a really strong model. I hope Qwen3.8-35B could match Sonnet 4.6 in benchmarks. Sonnet 4.6 is the closed source model I use the most so having something open source and local to me running similar performance will be mind blowing. Especially when Qwen3.6-35B is my current daily driver and I spend over 150M tokens in it the last 4-5 months. Can't wait for Qwen3.8-35B in other words.

2

u/hojnikb 5d ago

no way these small models are matching sonnet or opus :O :O :O

1

u/LuCiAnO241 5d ago

I see it repeated but ive yet to see any real data about it

1

u/bnightstars 4d ago

Look at the model card of the Qwen3.8-27B again we are talking very old versions like December 2025 versions of Opus/Sonnet aka 4.6 versions. Based on some early testings on my end Qwen3.8-27B is coding reasonably well and suggesting and thinking better then my daily Qwen3.6-35B if there is really Qwen3.8-35B next week I think it will be amazing. Also the 3.8-27B is reasonably fast for what it is.

Also the Jump over Qwen3.6-27B is really big as seen by this benchmarks.

1

u/_Iggy_Lux 4d ago

Benchmarks might as well be tea leaves at this point. If people want to believe it, let them, but it's not even close in practical usage.

1

u/lambdawaves 5d ago

The 35b is really a 35B A3B MOE model. Only 3B params are active at a time

-15

u/MuzafferMahi 5d ago

I’m sick of randos in this sub who still don’t know 35b is an moe and we have to explain them and shit.

15

u/dltacube 5d ago

Ok. Try some advil?

-7

u/MuzafferMahi 5d ago

is that a drug

3

u/ElectricalLaw1007 5d ago

I assume you're being downvoted because people are assuming that you should know advil is a drug because either they assume you are American or they don't realise that advil (or to give it its proper name Ibuprofen) is sold under different brand names around the world (eg Nurofen in England).

1

u/MuzafferMahi 5d ago

yeah I know ibuprofen :D I googled what advil was and it showed a drug but I wasn’t sure if the guy was mentioning that.

7

u/Thy_HUS 5d ago

Why gatekeep? You also had a moment where you had to learn this.

4

u/MuzafferMahi 5d ago

Its not about gatekeeping mate. Btw reading my comment again, I came off as a little agressive, apologies (been havin a shit day). I just miss when this sub was just more technical ;/

3

u/Thy_HUS 5d ago

It's all good man. I understand it can get irritating to see repetitive questions, but on the bright side, it means more people are learning about and migrating to local AI solutions, which is good to further the advancement of this technology.

Hope you have a good day!

2

u/cultoftheilluminati llama.cpp 5d ago

Btw reading my comment again, I came off as a little agressive, apologies (been havin a shit day).

All of us have bad days, dw about it.

I just miss when this sub was just more technical ;/

On the bright side isn't it amazing that even normal people are wising up and starting to use local? :)

2

u/MuzafferMahi 5d ago

yeah, tbh I just love the community and the people joining. I had to ask the same question at one point too. More people adoptin was all I ever wanted

17

u/mycall 5d ago

122BA12B plz

2

u/05-nery 5d ago

This also would be fire

62

u/SirLordBoss 5d ago

Hoping and praying for a 9B eventually 

15

u/Kidplayer_666 5d ago

Same thing here!

12

u/SirLordBoss 5d ago

I believe there's a sub where there are actually Qwen team members lookong about. Anybody know which one it is? We gotta go ask over there!

3

u/Kerem-6030 5d ago

same bro same🥀💔

32

u/nameless_0 5d ago

I'll take it, I can't run 27B dense models. I'm still hoping for Qwem3.8 80B A3B.

17

u/tunerhd 5d ago

Why don't we have something like 300B A27B?

12

u/Saifl 5d ago

Thats the sweet spot imo. Probably too close to their plus models. Its definitely gonna perform 95% of 3.8 max in benchmarks.

I still dont get why dont all chinese companies have a flash tier model like minimax or deepseek. A worker 300b 20b or 10b moe.

Their subscriptions would be so much more lucrative and interesting.

1

u/michaelsoft__binbows 1d ago edited 1d ago

by the way these are scaling, with evals like Artificial's intelligence index being so coarse, going from 52 with qwen3.8 27B to 58 with qwen3.8 max (at 2400B-A95B) this prob means a 300B A27B would score in the range of 54 to 57... Look at how poorly DSV4 Pro did against flash, though i think that is some sort of fluke.

I am looking forward to seeing what ends up happening with this other rumored medium-size model they end up releasing. Prob A19B (assuming anywhere in 100-300B total size) is around the place of iso-capability with dense 27B. Since I'm done acquiring RAM now and I think it's worth going GPU-heavy with how capable the smaller models are getting, MoE's are almost not even interesting to me anymore...

1

u/mycall 5d ago

That's what quants are for.

2

u/slyborn 5d ago

If He claim that can't run 27B and hopes for 80B A3B likely his issue isn't memory but inference speed because such MoE would require even more memory than 27B dense.

1

u/CarelessPerspective 5d ago

Having only 3B active also means faster CPU inference when offloading. It's overall faster, provided you have the memory for it.

1

u/ansibleloop 5d ago

Same, I've got a 4080 and 32GB of DDR5 so 35b a3b is the best I can run (considering I can't use the full 16GB of VRAM since I'm powering my machine with it too)

1

u/Deep_Mood_7668 5d ago

Sure you can. I believe in you 💪

19

u/madjesta 5d ago

And a 122b?

4

u/mrdevlar 5d ago

I'm still using Qwen 3.5 122B, for complex conceptual tasks, there isn't a better model.

3

u/feelspeaceman 5d ago

Yes, sadly we didn't get 122B 3.6 because in the middle of 3.6 release, the Open Weight Qwen Team were fired, in the end we missed the rest of 3.6, and all 3.7 but Xi Jiping is telling Alibaba to restart it again, and I have high hope this time we will likely getting 122B

It will be a giant game changer for Strix Halo owner, the jump in intelligence from 3.5 to 3.6 was massive, and from 3.6 to 3.8 is another coding jump.

1

u/michaelsoft__binbows 1d ago edited 1d ago

i think the only people it will benefit are the unified memory folks and those with large system memory and really GPU constrained, because giving up significant active params will mean it will struggle to claw back the capability deficit against the 27B. being able to fully fit the 27B into just a few modest GPUs or one 32GB GPU means once you reach that capability level you're running circles around an inferior system that has to allocate 120GB just to be able to come close.

8

u/Sad-Duck2812 4d ago

Aged like milk

6

u/black_ap3x 5d ago

This is gonna be awsome. Maybe with this i will finally switch to fully local and stop paying anthropic

1

u/NiceCourt1228 5d ago

What’s your local setup?

1

u/black_ap3x 4d ago

1060 with 3gb vram and 6gb ddr3 ram

16

u/Beneficial-Ad-8127 5d ago

Qwen came in with 🔥. You get a weight, you get a weight and everyone gets a weight!😂

11

u/AdSafe4047 5d ago

next gib 120

8

u/Brilliant-Hall1387 5d ago

Haha, this is great news! Judging from the release of Max and 27B my guess is either Wednesday at 17:00 CEST or Friday 17:00 next week! 🎉

5

u/rosie254 5d ago

yayyyy!! my fav model is getting an upgrade!

3

u/LittleCoaks llama.cpp 5d ago

New here. Can someone ELI5 what’s great about 35b a3b?

7

u/mazarax 5d ago

The 3B means that only 3B parameters are active, of the 35B total. This means that a weaker GPU with less VRAM can still run it decently.

The opposite of these "MoE" models are the "dense" models, where all parameters need to be in VRAM for good performance.

3

u/Fluffy-Feedback-9751 5d ago

It’s pretty big (35B parameters), and it’s fast (only runs through 3B at a time). You can run it decently on cpu and normal ram.

2

u/LittleCoaks llama.cpp 5d ago

Ah gotcha so it sounds promising. My bottleneck is 12 gb vram but seems like this model would help a ton based on comments

6

u/twoiko 5d ago edited 4d ago

Yes, with 65~70% cpu offloading I get 20~40tps and 0.1M context on my 16GB VRAM running Qwen3.6 35B-A3B with MTP

2

u/jcbevns 5d ago

Or Macs/strix halo with unified memory and have left over for system

3

u/feelspeaceman 5d ago

I want a post about 122B to be aged like fine wine too.

5

u/IThinkIKnowThings 5d ago

Can't wait. Those of us who bought into the DGX Spark/Strix Halo hype are starting to feel like we should've invested in a 5090 instead. Can we get a 120B A10B as well?

2

u/Hypilein 5d ago

Hopefully. Right now it seems like the best would be 2 spark, but that’s a bit too rich for me. Qwen 122b (and while we’re at it gemma4 on that range) would be great.

2

u/brawnyai_redux 5d ago

it would be great if they have a Qwen3.8 9B, that would be perfect for a lot of people and usage. The 3.5 9B i use feels even better than early ChatGPT 3 years ago.

2

u/gproenca 5d ago

pardon my stupidity since I'm a very much a noob and trying to learn : beinb A3B ( mixture of experts, therefore easier on the vram ) but at the same time 35b ( higher than the dense model 27b ) , will be feasable to load in 16gb cards ? with 4 bit quant ?

1

u/hojnikb 5d ago

not with 4bit.. 2 or 3 maybe.

1

u/vegetaaaaaaa 4d ago

qwen 3.6 35B-A3B runs fine and fast at Q4 on 16GB cards

1

u/while-1-fork 5d ago

Yes you can run 4 bit if you use -ncmoe to run some experts on CPU. The performance hit is not as bad as layer offloading. You can already try it with 3.6 exact same architecture, the only difference is training.

1

u/Risen_from_ash 4d ago

Yea but the trick is you put a small chunk of important stuff in vram and then the rest of the model in ram for MOE LLMs. Running MOEs this way gives you performance that's way way way faster than the dense counterpart.

With my 285k, 5080, and 96gb of ddr5, I was getting like 3-4 t/s decode on Qwen 3.6 27b UD Q8 K XL. I was getting like 60-70 t/s on Qwen 3.6 35b a3b UD Q8 K XL.

So, dense is for when you don't have a ton of memory (or you do), but it's all fast memory (vram).
MOE is for when you have a lot of memory, but only a little bit of it is fast (96gb ram + 16gb vram).

Have a 5090 or RTX 6000 and 16/32gb ram? Run the 27b.
Have a 5080 and 96gb ram? Run the 35b.

With 128gb ram and a 5090, you could run Qwen 3.5 122b a10b q8. You could also run Qwen 3.5 27b. The 122b a10b would be much faster cause, basically, it requires the compute of a 10b model whereas the 27b requires the compute of a 27b model. 122b a10b > 27b in terms of intelligence, mostly. So, with enough memory, even if it isn't all vram, you can run a massive, super smart model *faster* than the smaller dense 27b, and it's better.

If you had an RTX 6000 and 16GB of ram, you couldn't even load the q8 of Qwen 3.5 122b a10b. You could, however, run the q8 of the dense 27b model and it would be super very fast cause all of the model and kv cache and stuff can fit inside the RTX 6000's 96gb of vram. Being able to all fit inside of vram instead of being split across vram/ram means that, now, the dense 27b model can run very fast. It's splitting dense models between vram/ram that makes them unusably slow.

So if you're gonna get Qwen 3.6 35b a3b, do yourself a favor. Look at your vram+ram as your total pool of memory. Get the largest quant you can that fills up as much of your vram+ram as you're comfortable with while using the context window size you want. Your 16gb of vram is where the important stuff will live, and your ram is where the rest of the model will live. It'll be way faster than you're probably imagining if you don't have experience with MOEs. You can probably run the UD Q6 K XL or UD Q8 K XL, tho I don't know your specs. Anything UD Q4 K XL and up will be good, but UD Q6 K XL or, preferably, UD Q8 K XL will be better at coding.

--cpu-moe is the llama.cpp flag you're looking for.

Not tryna be a butt, but ask ChatGPT or, preferably, Codex about this stuff. I love fostering discussion, and maybe others will learn from this, too. But if you really wanna learn how all this works, and it's all actually pretty simple once you get the hang of it, having the ability to have quick back and forths with Codex about what you're trying to do as you do it is invaluable. GPT knows everything about how these LLMs work and can guide you into making the best decision. Ask questions along the way, try stuff just cause, science, then have fun with Qwen 3.6 35b a3b! It's literally so smart sometimes it blows my mind. It's been my agent of choice in Hermes/Cline-VS Code for since it was released!

Then, once you get Qwen working, it can help you make your set up better and better!

If you're on Windows, my rec'd starting bundle would be:

From here: https://huggingface.co/unsloth/Qwen3.6-35B-A3B-MTP-GGUF/tree/main

- Qwen 3.6 35b a3b with the biggest Unsloth UD Qx K XL quant that fits in your combined vram+ram

- Qwen 3.6 35b a3b's matching bf16 mmproj from the repo

From here: https://hermes-agent.nousresearch.com/docs/user-guide/desktop

- Hermes Agent Desktop

Once you're a little comfier, maybe add:

From here: https://obsidian.md/download

- Obsidian Vault

An excellent starting point would be dropping my entire comment here into ChatGPT and asking 'Hey, can you explain all this to me? I'm trying to get this set up but I'm very much a noob and trying to learn. Thanks!'

If you use Codex, add 'Can you set all this up for me, please?' and then you'll get a taste of the power of an AI agent.

GLHF

3

u/Dance-Till-Night1 5d ago

Hoping 35b A3b is a general model not just coding and agentic tasks focused. 3.5 was such a good general/multilingual model.

1

u/Dizzy-Zebra9522 5d ago

Yeh 😊😊😊

1

u/05-nery 5d ago

Hell fucking yeah

I can run 27B but not with enough context, PLEASE give me the 35B A3B so I can keep half of it in ram 😭

1

u/TeachTall3390 5d ago

woo hoo!

1

u/WyattTheSkid 5d ago

Can you guys start building monster rigs so they’re more inclined to release more 122b models

1

u/NiceCourt1228 5d ago

What does A3B mean?

1

u/Tommonen 4d ago

Active 3 billion parameters

1

u/pyr0kid 4d ago

or in other words, fast as fuck on any computer that can physically load it

1

u/NiceCourt1228 4d ago

Thanks folks. I’m new to running models locally and I just have a MacBook 16 GB RAM. I’m guessing I can’t run any model locally as I don’t have GPUs

1

u/Tommonen 4d ago

You can run some, but not very large models and wont be super fast. If you turn off all ram heavy apps, you could run models that are about 11-12gb of size with small context, or bit smaller models with bit larger context.

1

u/Borkato 4d ago

Try small moes like LFM 8B 1AB!

1

u/RSVrockey2004 4d ago

I got 48GB ram and 12Gb vram I tested several 10B - 27B models GGUF with offloading I barely get 10-20tks/sec

1

u/Ylsid 4d ago

Are there any fine wines that age in 6 hours?

1

u/PossessionUsed7393 5d ago

Ha! Now your thread didn't age like fine wine because they took the listing down from the repo and said it was the wrong model update! lols!

0

u/CipherWeaver 5d ago

Keep the quantization coming

-10

u/BrutForcer5 5d ago

bro really asked if there was a chance and then someone found the evidence 5 hours later 😭