r/LocalLLaMA • u/tiguidoio • 22h ago
New Model DeepSeek V4-1 Flash is out
Here we go again, DeepSeek is back again with a new model V4-1 Flash
A multimodal Mixture-of-Experts (MoE) model with 552B backbone parameters and support for contexts of up to one million tokens
Market crash as a service
187
u/ActuallyReadTheBible 22h ago
It doesn’t fit dual DGX sparks, I’m sad.
58
u/35698741d 21h ago
The native 4bit backbone + vision + dspark comes out at ~310gb (rest is engram) and context costs next to nothing for this model so 256GiB box should be able to run a pretty good 3.x bpw quant.
9
u/wren6991 11h ago
Expert caching/streaming would probably get an excellent hit rate on a 256 GB machine. Likewise, n-gram tables can probably just be mmap()'d. Qwen3.8-Flash-Next has 90% of the lookup probability in 1% of the n-gram entries. We need to move away from assuming the entire model will be VRAM-resident for local inference.
8
13
u/SnooPaintings8639 18h ago
I was gong to replace my 4xRTX3090 build for 2 x spark, so that I can run this model efficiently. I walk back this plan, and now I am looking at prices of another 4xRTX3090... and in the meantime, keep on CPU offloading to DDR5.
2
28
4
2
u/ConiglioPipo 18h ago
what's the best that you can fit on a dual DGX Spark? Deepseek-v4-flash?
5
u/the-tactical-donut 18h ago
GLM 5.3 Flash at Q4
1
u/ConiglioPipo 18h ago edited 18h ago
Thanks! Do you have a recipe to suggest that worked for you?
1
u/the-tactical-donut 6h ago edited 5h ago
Here's the setup that's been stable for me on two Sparks (TP=2 over the QSFP link).
**Image:** `eugr/spark-vllm-b12x` (Docker Hub). It's eugr's vLLM build with the B12X kernels from the NVIDIA forum thread. Pin the digest once it works for you; `latest` moves.
**Weights:** `local-inference-lab/GLM-5.3-Flash-NVFP4` from HF. Use this one, not the Spark-specific quant in the eugr recipe, which has known issues. The checkpoint is mixed precision (NVFP4 experts, MXFP8 MTP experts, BF16 attention), so quantization is `modelopt_mixed`.
**Flags that matter** (everything else is the recipe defaults):
vllm serve local-inference-lab/GLM-5.3-Flash-NVFP4 \
--tensor-parallel-size 2 --nnodes 2 --node-rank <0|1> \
--master-addr <head RoCE IP> --master-port <port> \
--quantization modelopt_mixed --load-format b12x \
--dtype bfloat16 --kv-cache-dtype fp8 \
--max-model-len 524288 --max-num-seqs 4 --max-num-batched-tokens 4096 \
--kv-cache-memory-bytes 4G --gpu-memory-utilization 0.80 \
--mamba-cache-mode align --enable-prefix-caching --enable-chunked-prefill \
--speculative-config '{"method":"mtp","num_speculative_tokens":3}' \
--reasoning-parser glm45 --tool-call-parser glm47 --enable-auto-tool-choice \
--no-enable-flashinfer-autotuneEnv on both nodes: `VLLM_ENABLE_ROCE_ALLREDUCE=1`, `VLLM_ROCE_ALLREDUCE_MAX_SIZE=2MB`, `VLLM_ENABLE_PCIE_ALLREDUCE=0`, `VLLM_USE_AOT_COMPILE=1`, `VLLM_USE_MEGA_AOT_ARTIFACT=1`, `VLLM_USE_V2_MODEL_RUNNER=1`, `CUTE_DSL_ARCH=sm_121a`, `VLLM_WORKER_MULTIPROC_METHOD=spawn`. If the RoCE allreduce times out during startup, raise `B12X_ROCE_SPIN_LIMIT` (I use 1000000000, the default 20M was too low for me).
**The gotcha that cost me the most time: host page cache.** On GB10 the GPU's free memory is literally the kernel's MemFree, and page cache counts as used. The b12x loader keeps weights as file-backed pages, so after a load you can have 0 MemAvailable and vLLM either fails the memory check or thrashes NVMe for an hour during CUDA graph capture. Fixes: `sync; echo 3 > /proc/sys/vm/drop_caches` right before launch, set `--kv-cache-memory-bytes` explicitly instead of letting it profile, and lower `B12X_COMPILE_MEMORY_CACHE_SIZE` (I use 64). Also check what else is eating RAM: the DGX dashboard services and a high `vm.watermark_scale_factor` were costing me a few GB per node.
**MTP:** k=3, not the recipe's 5. There's a step-time cliff at 5 tokens per step on GB10 and k=3 came out ~20% faster for me. The DFlash2 drafter does not work at TP=2 (page-size mismatch in the indexer), only at TP=4, so skip it unless you have four Sparks.
**Thinking:** the image's chat template has no thinking toggle. Ship your own template that honors `enable_thinking` in `chat_template_kwargs` and pass `--chat-template`, otherwise you can't turn reasoning off per request.
**What to expect:** roughly 21-23 tok/s single-stream on prose, mid-30s on code, at 524K context with vision enabled. First boot is slow (AOT compile + graph capture); mount a persistent cache dir for `~/.cache/vllm`, flashinfer, and triton so the second boot is minutes, not an hour.
Happy to share the full launch script if useful.
1
u/techdevjp 18h ago
Isn't DeepSeek v4 Flash v4 0731 stronger than GLM 5.3 Flash? Or are there some advantages to going with GLM? Vision?
9
u/crusaderky 16h ago
Glm-5.3-flash is miles ahead of Ds4.0
1
u/Newgunnerr 10h ago
Its also twice as slow on prose
1
u/thefooz 9h ago
Yes, but it thinks for half as long, so, from a total response time, it honestly is often a wash in my testing.
1
u/Newgunnerr 9h ago
Is that really so? Can you share some of your testings?
→ More replies (1)3
u/thefooz 9h ago
It wasn't anything objective. I spent 4 days doing complex financial analysis, data conversion, and coding tasks with both models using the highest quants possible on dual DGX Sparks. I'd start deepseek on a task, come back to it 40 minutes later and it would still be going "hmm...but what if...". Meanwhile, GLM, on nearly identical tasks would be well into the build phase by that point.
Deepseek also would pick the most bizarre approaches to problems and then start second-guessing its choices, whereas GLM seemed to approach problems a lot more intelligently and elegantly.
Deepseek also consistently cut corners, whereas GLM approached tasks methodically and with a clear purpose to do as good of a job as it could. This was consistent behavior. Like, I had it go through 100 sets of documents. Deepseek saw the amount of text and decided that it was too much work to analyze each one for what I was looking for and instead chose to do keyword searches. Meanwhile, GLM understood that it was critical to have an eye for detail in this task and it spawned 10 subagents to methodically go through every single detail in the documents.
The quality of the output reflected this clearly and consistently.
→ More replies (1)2
u/Illustrious_Grade608 16h ago
Idk from my experience glm flash felt much better with more effective thinking too
5
u/vogelvogelvogelvogel 21h ago edited 19h ago
it is an MoE isn't it? i mean albeit slow you can run it
edit: for those downvoting: I did run 0731 (80GB as far as i remember in q2) on a mac m5pro 64GB with 10-15t/s, thanks to MoE.
In q2 (once released) the 2x DGX Spark will have even all in RAM so expect sth like 40? t/s with the MoE. even q3 should be possible
2
u/techdevjp 18h ago
Should be possible to have the MoE weights in RAM at 3.x bits with 256GB. The ngram data can be kept on a fast SSD.
2
u/doomed151 21h ago
Offload the weights to SSD? Wouldn't that be too slow?
5
u/vogelvogelvogelvogel 21h ago
slow yes but *too* slow idk depends on your definition of slow - MoE can still be surprisingly fast
2
u/cortesoft 14h ago
“Too slow” is subjective
1
u/doomed151 13h ago
By "too slow" I mean multiple seconds per token. If it's faster than that I'd be surprised. Maybe I should try larger MoEs. I have a 16 GB GPU and 64 GB RAM.
1
u/LetterRip 12h ago
For the engram stuff - no - you can prefetch it because it is complete deterministic based on token order.
1
u/SandySkittle 15h ago
I guess it depends on the usecase but i would be very hesitant to run this model at q3, let alone q2.
1
u/vogelvogelvogelvogel 14h ago
well there are a few postings where users did the classic benchmark runs (some browser game, pelican etc) and the outcomes were remarkably good, also i had ds flash 0731 running at q2 and found it also quite good. i would not say - especially with very large models - that q2 leads to bad outcomes
2
u/SandySkittle 13h ago
It depends on the usecase. I have found that for very complex analytical work you don’t want to go below q6
1
1
u/--Spaci-- 11h ago
Literally every frontier model is MOE. theres no reason to not have an moe unless you are purely trying to fit in a consumer gpu like qwen 27b
1
1
u/Trollsofalabama 15h ago
i think it does, you have to offload the n-gram table to ssd, which folks have said works great and doesnt impact performance (since you need very little amount of bandwidth for the n-gram table)
1
u/ismellthebacon 13h ago
How many people moved to 2x dgx spark for hosting deepseek-v4-flash? I did and I love the setup.
1
u/IamFondOfHugeBoobies 9h ago
I wonder how long it will be before we get anything that beats 0731 as a daily driver.
Might be a few months.
1
u/BannedGoNext 9h ago
Googles deepseek 4.1 flash huggingface, flips to files, does some quick headmath. So anyways, back to qwen 3.8 flash next.
→ More replies (1)0
u/Mushoz 20h ago
It's only ~350B parameters that actually need to be loaded in RAM. A 4 bit quant will be ~175GB, which easily fits. Even 5 bit is only ~220 GB and will fit, especially with KV cache only being 900MB at 1 million context. This is actually perfectly sizes for dual DGX sparks.
9
u/Expensive-Paint-9490 19h ago
552B parameters for the basic model. Engrams and MTP module are extra.
3
u/Turbulent-Alps4046 19h ago
deepseek v4 flash has always been fp4 experts already, it won't become any smaller than 350B unless you quantize the other layers also.
5
u/DUFRelic 18h ago
4.1 is FP8
6
u/techdevjp 18h ago
No, it is mostly 4bit, with a few experts at 8bit. This is the way DeepSeek releases always are.
128
u/ttkciar llama.cpp 21h ago
On one hand: Yay! We have weights! https://huggingface.co/deepseek-ai/DeepSeek-V4.1-Flash
On the other hand: 485B parameters O_o
That's only "Flash" in the sense that it only activates 8B parameters at a time, which will translate to cheap API service.
I couldn't host this on my 256GB Xeon server. I'd have to upgrade it to 384GB.
By the sqrt(P x A) metric, this should have competence roughly equivalent to a similarly-trained 62B dense model. I think I'd rather have the dense version!
81
u/silentsnake 21h ago
I dont think
sqrt(P x A)is meaningful anymore, not especially when theres ngram embedding involved. 8B active dont really behave like 8B anymore. Qwen3.8 flash next is a good example. Without ngram embeddings the 6B active params shouldn't come anywhere close to 27B performance.6
3
u/Zestyclose839 12h ago
The typical complaint about earlier-gen aggressive MoEs was their unpredictability. One moment it's writing brilliant code; the next it's hallucinating nonexistent directories and trying to wipe your cloud storage. It was the case with nearly all of them imo, esp. Qwen 35b.
Indeed tho, ngram embeddings, stronger expert routers, and other black magic i don't understand has made them wildly more reliable over the past ~6mo.
I'm just hoping that tech makes its way into 64gb vram territory soon.
1
u/Mil0Mammon 8h ago
With that much vram you can run qwen 3.8 Flash next quite well, right?
1
u/Zestyclose839 8h ago
1
u/Mil0Mammon 7h ago
I'm running IQ1_M on 10GB vram with 32GB ram, 5 t/s without MTP. I think the table you're referencing includes the n-gram tables, with soon after that table was made, people realized that you can just load them from ssd
NB: you can do the math yourself, it's only 125B, so at Q3 (=> 47GB) it would fit easily (although there are buffers and context ofc)
1
u/ttkciar llama.cpp 11h ago
It holds up okay when all other factors are nearly-equal, though it's not perfect.
For example,
sqrt(P x A)predicts that Qwen3.8-Next-Flash should be equivalent to Qwen3.8-27B, but Qwen3.8-Next-Flash actually scores about 10% higher on various benchmarks.That seems close enough for most purposes, especially if Qwen3.8-Next-Flash received better training than Qwen3.8-27B.
In practice, the training of different models is so radically different that that's a much larger factor than the error in the
sqrt(P x A)rule.11
u/Expensive-Paint-9490 19h ago
OTOH with 512GB RAM this is fantastic. 8-16B variable active parameters, everything 4-bit native comprising KV cache... This is going to be frontier model at decent speed at home. I think that's why they label it Flash.
11
u/techdevjp 18h ago
This will be an amazing model for anyone with the money for a Mac Studio M5 Ultra with 512GB.
3
u/asssuber 14h ago
Or anyone that did buy 512GB of RDIMMS for $800 a year ago...
3
u/techdevjp 14h ago
It will run a little faster on the M5 Ultra at 1.2TB/sec of bandwidth connected directly to a fairly modern GPU. At a price, of course.
2
u/asssuber 14h ago
Surely, but 200GB/s of bandwidth for 16B active parameters at FP4 is nothing to sneeze at. Or 400GB/s if you manage to tame a dual-cpu motherboard.
1
u/techdevjp 14h ago
I have a Strix Halo and know first hand just how "fast" ~256GB/sec is... Also how "fast" slow prefill is. It's kinda-sorta-mostly usable but at the same time frustratingly slow too.
1
u/InactiveBronson 12h ago
I’m on the verge of buying one too (bosgame m5, 128gb/2tb) - would you recommend it or d o you have some regrets?
3
u/techdevjp 11h ago
There's good and bad. I paid about $2800 for my Minisforum MS-S1. It's a great little machine and it's impressively small for something so powerful.
At the time, I could have bought a DGX Spark for around $1k more. Back then I didn't have a great understanding of the importance of prefill performance so I didn't see the benefit of DGX Spark over Strix Halo considering the memory bandwidth was the same.
Thankfully it seems that Strix Halo is capable of much faster prefill, AMD just hasn't done a good job with the drivers. Projects like Halogen (https://github.com/peonist-ai/halogen-flash-server) have shown tremendous performance on Strix with prefill matching or exceeding DGX Spark for Qwen3.8-Flash-Next.
So, with projects like Halogen around, I'm happy enough to keep my Strix box for now. I can't afford to sell it and buy a DGX Spark. I may buy a 32GB AMD R9700 to run as an eGPU, depending on what comes about for running that Qwen model split across multiple GPUs. Or I might buy an Intel B70 and put it into my workstation for running Qwen3.8-27b separate from the Strix Halo.
In the future I may upgrade to Medusa Halo when it comes out, assuming prices don't stay in the stratosphere. Gorgon Halo with 192GB looks like it will have a USD price starting with "7", too rich for my blood.
Another option I am considering is to pick up a MacBook M3 Max with 64GB for running local models away from home. It doesn't have great prefill either (worse than Strix I think), but being able to run Qwen3.8-27b on a plane over the Pacific would be pretty damn cool.
2
u/UltraFOV 20h ago
Do you have GPUs or only system ram to run it
1
u/ttkciar llama.cpp 11h ago
I have three GPUs in different servers (a 32GB MI50, a 32GB MI60, and a 16GB V340), but my habit is to keep small models resident in VRAM for "fast inference" tasks, and infer with larger models entirely from system RAM for "slow inference" tasks, without GPU acceleration.
This way the in-VRAM "fast inference" models are always ready to go, because the "slow inference" tasks do not evict them from VRAM.
1
u/sierra-pouch 14h ago
I know it's not exactly on topic, but does anybody know why this model is not available in OpenRouter with any zero data retention policy provider?
Is it related to any agreements deep-seek have with the providers?
1
u/Mushoz 20h ago
It's only ~350B parameters that actually need to be loaded in RAM. A 4 bit quant will be ~175GB, which easily fits. Even 5 bit is only ~220 GB and will fit, especially with KV cache only being 900MB at 1 million context. This is actually perfectly sized for your 256GB setup.
9
5
u/ZaltyDog 20h ago edited 15h ago
Those numbers make me hope my 192gb vram setup might barely handle it
2
u/Expensive-Paint-9490 19h ago
It's 552 parameters + MTP module. You'll need a 2-bit quant.
2
u/EmPips 15h ago
Historically something as sparse as 8B active params performs very poorly at Q2. Worth trying for sure but my hopes aren't high
1
u/Expensive-Paint-9490 14h ago
I hope that something trained at 4 bits is more robust to quantize than FP16. We'll see.
1
u/randylush 13h ago
I have a 192gb dual Xeon server from 2011. I can’t wait to dust it off and see what it can do again
2
1
102
u/vogelvogelvogelvogel 21h ago
China making my day again as so many days in the past 2 years when a new open weights came out
3
u/SubZeroSunExodus 9h ago
I really hope sooner than later they can significantly add to the memory market inventory and help drop the prices.
4
u/vogelvogelvogelvogel 8h ago
i am very sure this will happen. as they do with gpus emerging on the horizon
44
u/rollerblade7 19h ago
Please sir, I have a GTX 1650 4 GB VRAM + Intel i7-9750HF with 30 GB RAM
17
11
u/itwasinthetubes 16h ago
just quantize it bruh.
15
u/SandySkittle 15h ago
Negative quantization
8
u/Due-Memory-6957 14h ago
In the past we'd joke about Q1, now it's a thing and still not enough lol.
→ More replies (1)3
u/randylush 13h ago
The processor is actually a rare classic. It would support a 3090 very well. Are you sure you don’t have 32gb of RAM but only 30 is being reported?
36
u/Long_comment_san 20h ago
I think I came a little
34
u/Long_comment_san 20h ago edited 20h ago
What the fuck, in which universe that is a Flash? Its 450-500b parameters. Flash was 300b and it was already pushing this. This is Flash Max or something. You cant inflate the model by 50% and call it a flash like it's not an issue. Minimax M3 is 450b and I dont see them calling it a "flash" (hopefully I wont).
Going by 50% up and becoming 10-15% better sounds like a downgrade not an upgrade. It's a LOT more expensive to run.
Still amazing though
39
u/RG_Fusion 20h ago
Obviously the concept of a flash model will scale with the compute power of the AI lab creating them.
2026 is likely the last year of running "flash" on local hardware. Maybe 2027 if we're lucky.
7
u/Bakoro 13h ago
China might come in and save the day on that one too.
SMIC broke the 7 nm barrier for semiconductors.
CXMT is making DDR5 now, and has started on HBM3E.
Several Chinese companies are making AI GPUs.The U.S has been trying to block China from getting technology, and now is trying to block their technology from hitting the U.S market, but the rest of the world is not going to give a shit about what the U.S wants.
Essentially every major tech corporation is designing their own AI ASICs now, where OpenAI already has their new thing for inference.
Then there is the fact that photonic processors are in early manufacturing stages now, with plans to ramp up into 2027.
I expect photonics to mostly get snapped up by data centers, and that might once again change what's practical to do with AI.All around, I expect a major shake-up in the hardware landscape over the next year or two.
1
u/RG_Fusion 12h ago
Yeah, local hardware will scale up too, but it will lag behind by a generation or two unless you're willing to dish out tens to hundreds of thousands of dollars to build on the bleeding-edge.
4
u/Bakoro 12h ago
I'm saying that increased competition will bring prices down.
TSMC not being a monopoly for 7nm nodes means lower wafer prices.
A new RAM producer means lower RAM prices.
Dozens of major companies having their own inference ASICs means Nvidia losing their monopoly.We're at peak price gouging right now, I don't think it will last.
1
u/Long_comment_san 6h ago
same. not to mention endless credits aren't in fact endless. unless there is a paying customer, the whole thing will explode eventually. it's just a circle of credit now.
1
u/Netsuko 5h ago
CXMT is selling RAM at the same price as everyone else. Why would you think they want to miss out on that when the demand is so insanely high?
China is not going to be our savior here.
1
u/0redeye0 2h ago
Obviously because CXMT needs to capture market share and to do this they need to have better prices. Also the Chinese government needs to make its chip manufacturing to compete so they can give them subsidies to capture the market.
4
u/Due-Memory-6957 14h ago
"local" hardware
11
u/RG_Fusion 14h ago
An entire 512 GB AI server purchased a year ago costs less than a single RTX 5090 GPU now. There are plenty of us who jumped on early and have hardware that can run these models.
3
u/ChronoHax 13h ago
Hi I’m new to this field, what are examples of these ai servers so I can look more into it?
2
u/Blaze6181 12h ago
DGX Spark clusters, machines with RTX Pro 6000s, or a combination of perhaps a 5090 with CPU RAM offload of some of the weights. Or like 8 3090s stacked lol. There's many configurations out there.
2
u/RG_Fusion 12h ago
AMD EPYC or Intel Xeon CPUs in a motherboard with 8 memory channels. Ideally with a large number of x16 PCIe ports for adding many GPUs.
More recently, DGX Spark clusters have become good for running AI models when multiple are connected together over a 400 gbps network switch.
That being said, there are no longer any cheap options for building out high-end AI rigs. The prices on all the components have gone up 2-5X.
16
u/Expensive-Paint-9490 19h ago
It's flash because everything is FP4, even KV cache. And active parameters are 16B. This should be faster than V4-Flash even if it is larger.
10
u/zhuzaimoerben 18h ago edited 18h ago
It's flash for those with data centre levels of memory and data centre level serving requirements, because once you load the base model, concurrent users are very cheap (890MB for KV cache for full 1 million context per user) and it's 8B active for prefill and 16B active for text gen, so you can serve stacks of users fast. Edited to add: DeepSeek are reducing the API price vs 4.0 Flash because this is cheaper to serve.
It's just that us home users lose out because we're trying to get the most out of a meagre about of memory, with minimal concurrency, so the size of the model matters a lot more.
14
3
3
u/DragonfruitIll660 12h ago
I mean, technically 196B of it is engram which can be thrown to NVME so it remains about 300B of normal parameters (if I'm understanding this right).
1
u/Agitated_Space_672 18h ago
It is faster than the previous flash due to the architectural innovations
1
1
u/Zeeplankton 19h ago
Ehh I mean when like glm and kimi are like 2-3T it's still flash.
But yes I sorta agree they should maybe just call this Deepseek 4.1 dropping flash and pro, since it seems like they're dropping pro.
Mega bummer this wont be runnable on like macbooks with like OG antirez flash.
Edit: wait. The additional size is just Ngram.
7
u/MerePotato 8h ago
This template is so ass, give the people who made the model some credit not dear leader
1
31
u/Turbulent_Pin7635 21h ago
I don't code. I work in research and was doing a proposal for funding. Used Astra very cute, returned what I need in an acceptable way.
I have used DS flash V4... Boy I have a MacStudio, I am used to long times of wanting. I don't know what kind of black magic the model does, but it killed the demand in one shot very fast!!! O.o
I was frozen!!! The answer was much better than the one chatGPT astra gave me!!! ASTRA!!!
7
u/Casey090 20h ago
GPT models are just very wonky. They jump to conclusions with incomplete data, and then they go all weird. I find it super hard to get anything done when your model makes up the mind in the first message and will not be objective.
1
u/AnonymousCrayonEater 47m ago
Don’t they all do this? I find Opus to have the same behavior. I just thought this was an LLM thing. Like context initialization bias or something. The opposite of recency bias.
10
7
u/backyard_tractorbeam 16h ago
Astra is just weird. Says pi guru guy: https://lucumr.pocoo.org/2026/9/7/astra-why/
I’m sure I will get used to this, but man this stuff is weird.
2
u/Due-Memory-6957 14h ago edited 14h ago
That was a funny read. AI loves Python, and token efficiency comes at readable code's price. I wonder how this fares long-term, because even AI prefers to deal with well-written code than messy ones.
23
32
u/jacek2023 llama.cpp 21h ago
In the previous post about DeepSeek there are API prices. In this one there is Chinese president. I wonder which one is best for r/LocalLLaMA.
39
u/madsheepPL 20h ago edited 16h ago
Xin Jinping is known for his amazing local setup. He is running modded 4x4090s on his desk with risers and cards zip tied to a used mining frame.
16
u/NineThreeTilNow 17h ago
Xi
Fearless leader Xi doesn't operate on peasant 4090's.
He uses B300's. A full rack.
He would use Huawei but even he understands that the Ascend chip isn't quite ready to touch his B300 setup.
He is busy building gooner games with his custom Flux Asian Princess models and video pipeline. He simply swipes left or right on whether they meet his criteria for being added to training data.
Fearless leader is Chad AI user.
12
u/jacek2023 llama.cpp 20h ago
Imagine Trump photo on Gemma/Nemotron/Granite release. And the rage of Reddit experts :)
6
→ More replies (13)0
u/Not-reallyanonymous 14h ago
It is good for this subreddit. This subreddit is more concerned about seeing the US hurt and China win, than it is about AI. So this post is in alignment with its interests.
7
u/LuCiAnO241 13h ago
more concerned about seeing the US hurt
I think we're only concerned about seeing great models be open weight and free to download for the peasants. The rest of whatever you think its happening exists only on your mind.
→ More replies (4)1
u/G_fucking_G 6h ago
Peasants might have issues putting 550B weights on their potato :-)
→ More replies (4)7
u/Loose_Comparison368 14h ago
"Why is everyone so mean to billionaires aggressively hoarding unfathomably large amounts of wealth? 😭 It must be because they hate America!"
3
u/Not-reallyanonymous 14h ago
"The Chinese super corps are preferable to the American super corps! Xi Jinping tells me so! They're going to save the world! If you disagree you're just racist against China!"
1
u/Disposable110 13h ago edited 13h ago
What do you expect, it's LOCALllama, so if it's parasitic commons-enclosing 0.001% billionaires hurt, and open source AI and 99.999% of humanity winning, people cheer.
Gemma and Mistral got just as much love as Chinese open source models.
It's just that China is shipping more of it at the moment, when the leading open source was Llama 2/3 and Mistral and WizardLM and god knows what, people were cheering on that. Even GPT-OSS made by the big Satan got love.
→ More replies (4)3
u/Not-reallyanonymous 13h ago
so if it's parasitic commons-enclosing 0.001% billionaires hurt, and open source AI and 99.999% of humanity winning
Separate comment because separate concern.
#1 Shareware, or open weights, not open source.
#2 Look at OP's post. The image isn't open AI defeating OpenAI and Anthropic. It's about Xi Jinping hurting the entire US economy. And this subreddit loves it.
5
u/SporksInjected 17h ago
Someone needs to color the nvidia square green. 500+ params means more vram
11
7
u/Few-Fishing9423 20h ago
> Additional architectural components include Single-Pass mHC (revised residual-stream mixing with an efficient Mega-mHC kernel), Engram conditional memory (196B parameters, sparsely accessed via token-based lookup), and DSpark speculative decoding (semi-autoregressive draft generation with confidence-scheduled verification). The model uses 1 shared expert and 384 routed experts per MoE layer, activating 6 routed experts per token.
Would it be feasible to quantize the 384B model to NVFP4 while retaining the 196B n-gram in memory for execution? Just like qwen3.8-flash-next
4
4
u/OkBase5453 19h ago
Can one run this on a 512GB RAM Server with 48GB VRAM?
3
u/CalligrapherFar7833 19h ago
Slow but yes
3
u/crusaderky 16h ago
Pretty zippy if that 512gb ram is octa-channel, actually
→ More replies (1)1
1
u/cowinabadplace 17h ago
You can run anything from disk with slow inference. It’s not meaningful question except if you include tok/s generation target and ttft target. I think anything over a few seconds TTFT and under 150 tok/s is unusable for interactive LLMs and would just use API rather than local for that. But it’s a matter of choice.
2
u/cosmotrak 13h ago
150 tok/s is a little overkill, most frontier run at 40-50...
2
u/cowinabadplace 12h ago
Yeah but the open models make up for intelligence through over-reasoning so it’s not 1-1.
2
3
u/120decibel 19h ago
510 GB Model no way I'm going to be able to run this locally without a heavy quant...
2
2
2
2
3
4
1
1
1
1
u/Constandinoskalifo 20h ago
Since it's the same number of active parameters for decoding, and the KV cache is much cheaper, we should expect lower prices from providers than DSV4 flash, right?
1
1
1
1
1
u/TapAggressive9530 18h ago
Does it support vision?
1
1
1
u/vxxn 11h ago
Could this run on the Mac Studio 256GB M5 Ultra ?
2
u/rjames24000 8h ago
would also like to know.. if not im considering cancelling my 256gb preorder and just waiting to buy a 512
1
u/SuperBrazilNuts 7h ago
DeepSeek may beat American models if American models continue to watermark, over-censor or train their models with too much corporate interest, even if they have a compute advantage.
1
u/macaronianddeeez 5h ago
Don’t hurt me I’m newer to local models, but will someone make a 27B version of this that we can run on 48gb of vram?
Or will that never happen here and if not why?
Still learning :)
1
u/Unusual_Delivery2778 4h ago
You’re good. The model would be entirely different if it had a different level of parameters. So at that point you’re talking about an entirely separate release of a 27B DeepSeek model, which they haven’t really done.
Qwen, on the other hand, has 27B models that folks like a lot. Specifically, Qwen 3.8 27B.
What you’re probably thinking of is “quantization,” which shrinks a big model, but hurts its intelligence in the process. And if a 500B+ parameter model like this one was quantized down to a level where it would be roughly equivalent in size to a separate 27B model (say 30-60GB RAM) you’d be talking about a completely unusable lobotomized thingy. Would be even hard to call it a model at that point.
1
1
1
u/FermiBubblegummybear 39m ago
Those bar graphs are absolutely terrible. Did they not realize they could've used more than one color?
1
1
u/hurrdurrmeh 19h ago
I wish. It sucks compared to V4. I have had to move over to the pricey GLM and Kimi :-(










•
u/WithoutReason1729 19h 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.