57 comments

  • hypfer47 minutes ago
    Since it might be helpful to some, here&#x27;s my current commandline for llama.cpp running on an RTX 4090 with my monitor moved to the iGPU to free up all of its VRAM.<p>llama-server -m Qwen3.8-27B-IQ4_NL.gguf --mmproj mmproj-BF16.gguf -c 170000 --parallel 1 -ngl -1 --cache-type-k q8_0 --cache-type-v q8_0 -b 1024 -ub 512 --flash-attn on --no-context-shift --no-mmproj-offload --spec-type draft-mtp --spec-draft-n-max 5 --spec-default --cache-type-k-draft q4_0 --cache-type-v-draft q4_0 --threads 24 --jinja --reasoning on -fit off<p>Identical to the qwen3.6 config. With a prompt like &quot;svg owl&quot; (which can reuse quite a lot compared with creative writing or similar, so ngram-mod shines), I get about 70-80t&#x2F;s like this, with a memory overclock of about 1.5GHz
    • Aurornis16 minutes ago
      &gt; --cache-type-k q8_0 --cache-type-v q8_0<p>In my tests, even Q8 quantization for the KV cache comes with notable drops in performance for longer tasks. It does provide more context length in limited RAM budgets, but the longer context tasks are where KV quantization starts to show problems. It’s basically unnoticeable for simple and short tasks.<p>&gt; --spec-draft-n-max 5<p>5 is a lot of tokens to draft. Are you really seeing acceptance rates to support that? When I tested it, 2-3 was the peak. Anything more started reducing performance except on highly predictable short outputs.
      • hypfer13 minutes ago
        Yes to both.<p>The thing is that I can either use the q8 context, or have not enough context window, so I just live with whatever degradation there is. The same can be said about the IQ4_NL. I would not go any lower though.<p>As for the draft count, indeed that depends on what you do with it, but for coding, reverse engineering and that kind of stuff it does pay off in my testing, though 5 is really pushing it, but the 4090 has so much compute.<p>Last longline I saw scroll by right now had 47% acceptance rate for 4th and 28% for 5th, but not sure how representative that is. I think when tuning 3.6, I saw more like 33%? But not 100% sure.
    • reilly300036 minutes ago
      Thanks for posting! Have you had any success with running without kv cache quantization? Is there a noticeable difference in quality without any? I would assume that would eat into context but 170k is pretty generous!
      • hypfer33 minutes ago
        According to this shitty vibecoded thing &quot;I&quot; built <a href="https:&#x2F;&#x2F;hypfer.github.io&#x2F;will-it-fit-llama-cpp&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hypfer.github.io&#x2F;will-it-fit-llama-cpp&#x2F;</a> (and I guess according to math too), FP16 K&#x2F;V would give me something like 90k context at the same model quant, which doesn&#x27;t really fit my usage.<p>But maybe someone else has experience to share there
        • nubg13 minutes ago
          just to clarify. yes YOU built it. just because you used some tool doesn&#x27;t mean the idea, prompting, reprompting, babysitting was not your creative input and effort.<p>put differently, if you put a random person infront of whatever model you used (say, a 50yo receptionist at a pharmacy in india), they would not have been able to create that, because they would have lacked the motivation, idea, background knowledge, taste, etc to create such a thing.
          • williamcotton3 minutes ago
            I generally agree and expect this to be the case from a legal perspective.<p>Legal questions of authorship are going to have to be established in terms of doctrines like SSO [0] and AFC [1]. Currently the incredibly sparse caselaw around this has yet to involve such non-literal notions of copyright.<p>[0] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Structure,_sequence_and_organization" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Structure,_sequence_and_organi...</a><p>[1] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Abstraction–filtration–comparison_test" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Abstraction–filtration–compari...</a>
          • bilekas3 minutes ago
            You sound like your trying to reassure yourself of something.<p>I sure hope my boss doesn&#x27;t think he built my work! He&#x27;d probably get fired pretty quickly during on call!
    • D4Ha27 minutes ago
      Do you find it useful or worthwhile to split a large LLM across two GPUs on a desktop?<p>If you&#x27;ve tried it, what worked well and what didn&#x27;t? I&#x27;m especially interested in mismatched VRAM setups, e.g. a 16 GB GPU + a 24 GB GPU.<p>How much overhead did you see from inter-GPU transfers, and did the extra usable VRAM outweigh the performance hit?
      • bilekas0 minutes ago
        I haven&#x27;t tried this either but I&#x27;m guessing if you could pool the GPU memory over whatever the kids are using these days, I think it was SLI back in my day. The GPU memory <i>should</i> still be faster than the RAM?
      • mips_avatar1 minute ago
        Depends on your pcie connection. If they&#x27;re both x16 then it&#x27;s pretty low overhead, x8 is ok, but x4 is too slow. Also it&#x27;s a bit tricky getting an optimal setups with mismatched vram, I think you could probably still make use of the full vram if you&#x27;re clever but it&#x27;s trickier.
      • hypfer25 minutes ago
        I just have one 4090 and nothing else, soooo I can&#x27;t help there, but maybe someone else can.
      • CamperBob219 minutes ago
        That&#x27;s a very deep rabbit hole involving PCIe topology on both the hardware and software (NCCL) side, among other things. It&#x27;s too system-specific to answer directly, but the entrance to said hole can be found at <a href="https:&#x2F;&#x2F;github.com&#x2F;local-inference-lab&#x2F;rtx6kpro&#x2F;blob&#x2F;master&#x2F;hardware&#x2F;topology.md" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;local-inference-lab&#x2F;rtx6kpro&#x2F;blob&#x2F;master&#x2F;...</a> .<p>Disregard references to RTX 6000 cards, most of it is generally applicable to all multiple-GPU boxes.
    • bmitc26 minutes ago
      Lol at that command. Why is this stuff so hard to run locally? I&#x27;ve spent a few days trying to figure it all out and haven&#x27;t been able to. LM Studio doesn&#x27;t work behind proxies. Ollama is confusing and doesn&#x27;t seem to support Qwen3? And Llama.cpp is your command.<p>I just want to run `&lt;some-command&gt; &lt;model-name&gt;` with some default parameters set and for it to run locally.
      • Aurornis9 minutes ago
        Start by copying the command line from the Unsloth guides.<p>You don’t need to fine tune all of those parameters to get started.<p>It’s really easy to ask an LLM to adjust the command line if you can’t be bothered to read the help out. Copy the help output into the LLM and tell it your goal.<p>&gt; Ollama is confusing and doesn&#x27;t seem to support Qwen3?<p>Typing “Ollama qwen3” into Google takes you right to this page:<p><a href="https:&#x2F;&#x2F;ollama.com&#x2F;library&#x2F;qwen3">https:&#x2F;&#x2F;ollama.com&#x2F;library&#x2F;qwen3</a><p>If even Googling for basic Ollama support is too hard, there might come a point where you have to acknowledge that local LLMs are not for you. None of this is really that hard with some basic Google bootstrap skills or by asking an LLM to help with the command.
      • hypfer24 minutes ago
        What makes you say that it would be hard to do that?<p>It&#x27;s long, I guess, but not cryptic.<p>You tell llama server where the model is, which context size to use, what to use for the K&#x2F;V cache quant, that it should do MTP, tune some MTP parameters, and that&#x27;s kinda it.<p>Perfectly logical blocks with all the model-specific weirdness (that does exist!) abstracted away.<p>You could also just run -m &lt;modelfile&gt; and let llama-server do the right-ish thing. The defaults are probably fine, but not how you squeeze out these exact numbers. I think at least. I&#x27;ve never tried. My hubris stopped me from trying auto configs.
        • porphyra17 minutes ago
          &gt; llama server where the model is, which context size to use, what to use for the K&#x2F;V cache quant, that it should do MTP, tune some MTP parameters, and that&#x27;s kinda it.<p>isn&#x27;t that the hard part? You know the ballpark ideal values for these many parameters since you&#x27;re a knowledgeable expert but the vast majority of people are just like &quot;I want AI&quot; and have no idea what all the jargon even means.
          • manquer12 minutes ago
            Why would they wish to handcraft this ? That is what agents are for ?<p>They could ask your current agent to a) search for this type of content online for the optimal setup for their hardware b) have the current agent&#x2F;harness spin it up have it verify the config run few experiments.<p>Sure AI may make mistakes, or won&#x27;t get the best possible config probably, but it certainly do a good enough setup, this is a task with feedback on whether the server crashed or poor performance easily measured so the agent can do a pretty good job.
          • solenoid093713 minutes ago
            Sure, but front ends like LMStudio exist for that crowd<p>Otherwise, if you&#x27;re a programmer setting up a local harness, it only takes like 20-30 minutes to learn what the right parameters are.<p>It&#x27;s very model, hardware, and use case dependent which is why a one size fits all solution doesn&#x27;t work
          • bmitc13 minutes ago
            This is exactly it. I already have broad access to Claude, Gemini, GitHub Copilot. I want to use open models on automated tasks that chew up tokens but where I don&#x27;t necessarily need the best-in class models and UX.<p>For Claude, I setting a single config file and then download and run Claude Code CLI. Even easier for the GitHub Copilot CLI.
      • skrebbel14 minutes ago
        &gt; LM Studio doesn&#x27;t work behind proxies.<p>Woa, is that still a thing? You mean like SOCKS5 stuff that you have to manually configure in every application that uses the internet?<p>I mean maybe I&#x27;m just living under a rock but I feel like that&#x27;s a rather niche situation you got there.
        • bmitc12 minutes ago
          &gt; I feel like that&#x27;s a rather niche situation you got there<p>Every big company in the world uses a network proxy. LM Studio, as far as I can tell, cannot be configured to work behind such proxies.
          • skrebbel9 minutes ago
            Woa TIL. I thought that was somehow long solved at the OS level or with VPNs or something like that (no idea exactly how, I&#x27;m sure just I&#x27;m misunderstanding something basic).<p>Makes it rather weird that LM Studio doesn&#x27;t support it given how their target market, or well at least for their paid products, is very enterprisey.
      • xienze24 minutes ago
        Well there&#x27;s a lot of knobs to turn if you want to improve performance. You can always point an LLM at the model card, give it your info, and have it write up the command.
        • Auracle21 minutes ago
          Sure, but shouldn’t the programs to run the LLMs go “the user has this much vram and the model is this size, so I’ll start with sensible defaults based on that”?<p>You could override, obviously.
          • zargon14 minutes ago
            Yes, llama.cpp does that.
      • naasking16 minutes ago
        You know free LLMs can help you understand that command line or design your own...
      • CamperBob220 minutes ago
        I never install this stuff manually anymore. Just tell your LLM of choice to download model X from URL Y, build the latest inference engine of choice E, and then create batch files or shell scripts to run instruct and&#x2F;or reasoning models in accordance with instructions at URL Z.
  • KronisLV2 hours ago
    I hope really badly that we&#x27;ll get a new 35B A3B or similar MoE model!<p>I also miss the Qwen 3 Coder Next, which was 80B A3B, there are quite a few use cases where a non-dense model &lt;100B would be the sweet spot (when you have the VRAM but not the TDP or compute power). Heck, I&#x27;d gladly take A5B or A8B or even A10B as a sort of middle ground.<p>Also alternate link for viewing the images without signing in: <a href="https:&#x2F;&#x2F;xcancel.com&#x2F;Alibaba_Qwen&#x2F;status&#x2F;2088280182356611304" rel="nofollow">https:&#x2F;&#x2F;xcancel.com&#x2F;Alibaba_Qwen&#x2F;status&#x2F;2088280182356611304</a>
    • Casteil2 hours ago
      I&#x27;m hoping too that they&#x27;ll put out some MoE variants.<p>Qwen3.5:122b:a10b can run about twice as fast as this 27b dense model.<p>Edit: Like its predecessors, 3.8 seems really inclined to overthinking, and on a 27b dense model that&#x27;s kind of painful. I think I&#x27;m going to stick with gemma4:26b-a3b as my go-to because it runs about 4x as fast and tends to only need a fraction of the tokens in its &#x27;thinking&#x27; stage to get the same or similar answer.
      • Phemist29 minutes ago
        Did you try the claude reasoning traces finetune for qwen3.6? I find that it works muuch better. I assume the same 3.8 finetune will be released at some pointas well.<p>Edit: link - <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;rico03&#x2F;Qwen3.6-27B-Claude-Opus-Reasoning-Distilled" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;rico03&#x2F;Qwen3.6-27B-Claude-Opus-Reason...</a>
      • satvikpendem15 minutes ago
        Reduce or turn down thinking:<p><a href="https:&#x2F;&#x2F;huggingface.co&#x2F;froggeric&#x2F;Qwen-Fixed-Chat-Templates" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;froggeric&#x2F;Qwen-Fixed-Chat-Templates</a>
    • jwr37 minutes ago
      Me too. 35B A3B runs really fast on my MacBook Pro (M4 Max) and is suitable for real-time tasks like dictation post-processing. The dense model is not.
    • peri-cl1 hour ago
      Same here! Qwen3.6-35B-A3B is the only local model I&#x27;ve found that runs reasonably on my iGPU. Looks like me and and my noisily-wheezing laptop will be sitting out this upgrade.
      • expedited12335 minutes ago
        Mind sharing your laptops specs? Just interested to see what is needed to locally run Qwen3.6-35B-A3B
        • peri-cl8 minutes ago
          Don&#x27;t mind! It&#x27;s 64 GiB dual-channel DDR5-6400, i.e. roughly 100 GiB&#x2F;s of bandwidth. (AMD 7840U (Zen 4))<p>I&#x27;m using a Q4 quantization from unsloth (Qwen3.6-35B-A3B-UD-Q4_K_XL). It gets up to ~20 tokens&#x2F;second in generation. I don&#x27;t know precisely how much KV cache I can safely use, but that&#x27;s &gt;140k tokens.<p>Inference is llama.cpp with the Vulkan GPU backend on Linux. (I.e., -DGGML_VULKAN=1 on the llama.cpp build, and --gpu-layers all on llama-cli or llama-server).
    • Alifatisk1 hour ago
      &gt; I&#x27;d gladly take A5B or A8B or even A10B as a sort of middle ground.<p>Whats up with focusing on the active param count? Do yall fiddle with the weights or something?
      • kennywinker51 minutes ago
        Total param count decides how much vram you need to run it. Active param count decides how fast it runs. My 10 year old GPU can load quantized 35B or 27B, but it can’t process 27B parameters per token faster than 2-4tok&#x2F;s, while it can do A3B at &gt;40tok&#x2F;s
      • martinald1 hour ago
        You can run these on CPUs at a somewhat reasonable speed.
        • KronisLV1 hour ago
          Or (somewhat) low TDP GPUs for that matter, like workstation ones, that might have enough total VRAM but not the best bandwidth&#x2F;compute.
  • scrlk2 hours ago
    Beats Opus 4.7 Max (w&#x2F; Claude Code) on DeepSWE (42.2 vs 40). Looks like Qwen&#x27;s 27B models continue to pack some punch.<p>Unsloth&#x27;s GGUF quants are up: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-GGUF" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-GGUF</a>
    • NitpickLawyer1 hour ago
      &gt; Beats Opus 4.7 Max<p>I&#x27;m a huge open model fan, and have used them since forever, even have daily drivers for on-prem dev, but no. They do not beat opus on real-world usage.<p>Qwen models are impressively good for what they are, are &quot;good enough&quot; for plenty tasks, can be ran locally on decently priced hardware, and so on. They certainly have their uses, and the field in general has advanced faster than my early expectations. But to compare a 27B model to SotA behemoths from a few months ago is doing everyone a disservice, especially people who pick it up, try to use them just like API models, and leave disappointed and confused. Number goes up on a benchmark isn&#x27;t it.
      • spmurrayzzz1 hour ago
        &gt; They do not beat opus on real-world usage<p>We have an internal eval that measures performance on tasks for a handful of embedded systems repos for our mmWave radios (mostly Rust, some C for microcontroller stuff). Qwen3.6-27B scores only 4% lower for pass@1, n=250 compared to Opus-4.8.<p>For the labeled dataset, the average PR size they&#x27;re being measured against is around 1.5k SLOC.<p>This is very much &quot;real-world usage&quot; for us. The sort of change sets that come in daily&#x2F;weekly and are solving non-trivial issues in the respective codebases.<p>As is usually the case, the most broad claims from both the labs and from the consequent pushback are talking past each other.
        • croemer21 minutes ago
          How much does it score though? 0% would be 4% less if Opus was at 4%. Unless you mean relative fraction not percentage points - but people usually mean percentage points in such situations.
        • cyanydeez43 minutes ago
          Let us know when you have Qwen vs Qwen comparison stats. As long as there&#x27;s not a regression, that&#x27;d be awesome.
          • spmurrayzzz40 minutes ago
            4% is within the margin of error anyways for pass@1, so I think pass@k &gt; 1 is gonna be the better indicator of any movement (still need to calibrate the optimal k to re-test). 10 seems too tolerant even though that tends to be the next tranche I reach for.
            • croemer20 minutes ago
              Depends on where you sit on the binomial curve. At p=0.04 for n=250 4% points would not be within margin of error.
      • redox9922 minutes ago
        Yep. These small models are actually worse than GPT 3.5 at some tasks (like recalling facts). You can definitely make models smarter at specific tasks (like tool calling, coding) but you can&#x27;t compress the entire human knowledge into a 30GB file. It&#x27;s just not enough bits.
      • KronisLV1 hour ago
        &gt; ...but no. They do not beat opus on real-world usage.<p>I agree, but then we just need meaningful benchmarks that clearly show that! Otherwise it&#x27;s hand waving about something that should be put on paper in quantifiable terms.
        • pimeys1 hour ago
          If you are working in a company and using language models, it is a very good idea to hold a bunch of evals you can trust and use to validate new models. Calibrate every once in a while with prod data. We have our own and the only numbers on quality and cost I trust come from this setup.
        • niek_pas1 hour ago
          A wise man once said, &quot;not everything that counts can be counted, and not everything that can be counted counts&quot;.
        • mlmonkey1 hour ago
          In the end, the only benchmark that matters is your own.
        • bewareofscams1 hour ago
          Only useful benchmarks are those you (in particular) don&#x27;t have access to.
          • rhdunn27 minutes ago
            The only useful benchmarks are those you&#x27;ve created for your specific workflow. Only then can you assess whether a given model is better or worse for what you are using it for.<p>There are tools like promptfoo designed for this.
        • xienze1 hour ago
          &gt; but then we just need meaningful benchmarks that clearly show that!<p>That&#x27;s the rub. AI benchmarks are IMO, by and large totally unreliable. We think of them as similar to traditional benchmarks of deterministic processes where the number of variables is low. But they&#x27;re anything but that. Non-deterministic processes with an astounding number of variables and fuzzy acceptance criteria.<p>It leads to results like these, where if you take it at face value, the only conclusion you can draw is &quot;wow Anthropic must be stupid if Opus takes 1T parameters to do what Qwen can do in 27B.&quot;
      • metadat45 minutes ago
        How can you say this when you haven&#x27;t even tried it yet? Is it just hypothetical vibes?
      • willcmcc51 minutes ago
        There is 0 shot you can make that claim about this model you have not used or downloaded yet
      • altmanaltman41 minutes ago
        &quot;Benchmark is stupid&quot; and &quot;model beats model on benchmark&quot; are two different things, though. The second one is objectively true regardless of your views on the first one, right? To expect everyone to share your opinion that benchmarks are stupid is pretty weird, and just saying &quot;no&quot; to an objective truth is the definition of delusion.
    • jrflo20 minutes ago
      That kind of result makes me suspicious of benchmaxxing. Qwen 27B is 100x smaller than Opus 4.7. Is it really 100x more parameter-efficient? Two orders of magnitude is hard to believe. I don&#x27;t have the hardware to run a 27B, but I&#x27;m curious what real world use is like. Maybe I&#x27;ll have to buy some usage on a cloud provider to run my own tests, but this seems fishy to me.
      • CuriouslyC2 minutes ago
        Qwen small models are heavily coding focused, whereas Opus is everything to everybody (even if code is their bread and butter). The downside is they&#x27;ll frequently hallucinate world knowledge so they need to be RL&#x27;d to double check their knowledge against sources and verify facts&#x2F;library names&#x2F;etc.
    • nblgbg2 hours ago
      Is there any advantage to using the model from Unsloth compared with <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;Qwen&#x2F;Qwen3.8-27B-FP8" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;Qwen&#x2F;Qwen3.8-27B-FP8</a> ?
      • satvikpendem9 minutes ago
        Unsloth usually also fixes the models when they bork something, which always happens. For Gemma for example the tool calling wasn&#x27;t working for the longest time.
      • benxh2 hours ago
        Depends on what software&#x2F;hardware you&#x27;ll run it. GGUFs from Unsloth can run on pretty much every single potato; full weights need beefy gpus
      • petu1 hour ago
        Unsloth one is gguf for llama.cpp (and some other on-device engines).<p>So advantage is not having to produce your own quantisation &#x2F; gguf from .safetensors you&#x27;ve linked.
      • danielhanchen1 hour ago
        We also made NVFP4 ones if that helps! <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-NVFP4" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-NVFP4</a>
      • 4chandaily1 hour ago
        Run the unsloth if you are using llama.cpp (GGUF)<p>Run the one you linked if you are running vllm (safetensors)
    • Foobar85681 hour ago
      Considering the clusterfuck that is opus 5 or even fable, if Qwen 27B is trully better than Opus 4.7 Max, I will rejoice.
      • UncleOxidant1 hour ago
        If it&#x27;s as good as Sonnet 4.6 for most things I&#x27;d be happy.
    • edg50002 hours ago
      That&#x27;s crazy, considering the massive size difference. But the small Qwen models are known for punching above their weight.
    • WithinReason1 hour ago
      I wish each quant was benchmarked on the same tests as the original network so we could compare their performance
      • scrlk1 hour ago
        Unsloth publishes KL divergence numbers which measures how much the quantised probability distribution changes vs unquantised: <a href="https:&#x2F;&#x2F;unsloth.ai&#x2F;docs&#x2F;models&#x2F;qwen3.8#quantization-analysis">https:&#x2F;&#x2F;unsloth.ai&#x2F;docs&#x2F;models&#x2F;qwen3.8#quantization-analysis</a><p>It&#x27;s a bit bare at the moment, I assume they are going to add further detail later (eg comparison to other quants), similar to their other releases.
        • zargon43 minutes ago
          KL divergence is nothing close to a replacement for benchmarks. As flawed as benchmarks are, KL divergence is a barely useful signal. The fact that Unsloth only just started publishing KL divergences shows how unserious the quantization space is.
          • lostmsu17 minutes ago
            &gt; The fact that Unsloth only just started publishing KL divergences shows how unserious the quantization space is.<p>Just wanted to say that this is a very important point that I totally agree with. People are obsessed with KL divergence, but it is yet to be demonstrated to be a descent proxy for agentic coding benchmarks.
        • WithinReason18 minutes ago
          That&#x27;s not a replacement for benchmarks
    • UncleOxidant1 hour ago
      Good morning Dario!
  • ramon1561 hour ago
    People will claim it&#x27;s not comparable to Opus despite it beating the score. I&#x27;m not sure I disagree, but I&#x27;m also unsure whether I care. Most new models nowadays are &quot;good enough&quot;. I cannot complain because I&#x27;d rather spend that time improving my prompts and docs. Opus might be a _slight bit better_ at picking up vague hints, but it&#x27;s also extremely expensive, and I hit the 5 hour limit way too quick.<p>I care a lot about speed and efficiency right now. For my setup I would like to have 2-3 different model families. I&#x27;ve settled on GLM-5.3 (formerly Deepseek v4 pro 0813) for architecting, Deepseek V4 Pro 0813 for developing, and Gemini flash lite (any recent cheap model) for repo scouting. I&#x27;ll add another one in the mix for reviewing (in this case Gemini 3.7) and that&#x27;s all I need.<p>I&#x27;ve tried most models except Grok.<p>Qwen is too expensive IMO (Alibaba Cloud subscriptions are hard to come by and I&#x27;m not spending 50 euros a month for a tool, so 18 euros it is). If it ever becomes efficient enough to run locally I will definitely look back.<p>Claude is slow and expensive (the cache hit prices are absurd).<p>OAI is pretty good, I might add it to my arsenal seeing how cheap it is.<p>These opinions change every day. Last week I would&#x27;ve never picked Deepseek until I read about the pricing. even post aug 16 it&#x27;s worth it (although it&#x27;s getting close to gemini pricing).<p>Right now my costs are 12 euros a month (z.ai) + whatever deepseek consumes. This typically isn&#x27;t more than 8 euros a week. 44 euros a month and I have a setup that is doing pretty well.
    • satvikpendem7 minutes ago
      You should check out Grok, it&#x27;s quite a good deal from the Cursor subscription side but it&#x27;s cheap even by API prices.
    • simplyluke1 hour ago
      I&#x27;m convinced a lot of the anti-open-weight model comments at this point are inorganic traffic - there&#x27;s trillions in investor money riding on a world where these models aren&#x27;t cheap commodities. Having actually used things like the recent GLM, Kimi, and Qwen I think any edge the labs have is marginal at most and actually prefer the open weight models in most day to day usage.<p>Anthropic&#x27;s recent releases are wordy to the point of exhaustion. Every time I use opus recently I find myself wanting to yell &quot;GET TO THE POINT&quot; at a terminal, which is exacerbated by it being slow.
    • hypfer1 hour ago
      &gt; I&#x27;ve settled on GLM-5.3 (formerly Deepseek v4 pro 0813) for architecting<p>Dude, GLM-5.3 released _today_.<p>The phrasing &quot;I&#x27;ve settled on&quot; is incorrect for this context.
      • ramon1561 hour ago
        hence the &quot;former deepseek v4 pro&quot;. I tried it out this morning and have had no complaints. I already liked glm 5.2
        • hypfer1 hour ago
          The sentence still doesn&#x27;t make sense, because &quot;settled on&quot; implies a long testing phase with a verdict eventually emerging out of that.<p>What you&#x27;re currently doing is &quot;testing out&quot;
        • Topfi38 minutes ago
          Honest question, how do you assess models this quickly? What metrics are you using? Would love to get my suite from multiple days and hundreds of prompts down to minutes. Got a few first pass tasks I run upon release for an initial experience, but those only work because even Fable and Sol fail despite objectively correct solutions existing, so it works because most models fail, but then, those are consciously not enough for coding, tool use, adherence or task specific inference and assessment…
          • satvikpendem8 minutes ago
            What are you working on? That can dictate which models are best.
    • tosh1 hour ago
      i think you will like luna if you haven&#x27;t tried it yet
  • satvikpendem14 minutes ago
    As usual, the Jinja templates are messed up so use this [0] to reduce or turn off thinking, fix tool calling, keep a 100% KV cache hit rate, etc.<p>[0] <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;froggeric&#x2F;Qwen-Fixed-Chat-Templates" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;froggeric&#x2F;Qwen-Fixed-Chat-Templates</a>
    • skrebbel5 minutes ago
      I&#x27;d love to understand this more. Are you saying the Qwen team spends their very impressive human and compute resources on publishing these amazing models and then botches the chat template with mundane bugs?<p>Like maybe I just misunderstand what&#x27;s the hard part but wouldn&#x27;t you assume that people who can put together an impressive model can also write a proper jinja chat template for it?
      • Der_Einzige3 minutes ago
        Yes yes, oh god yes. They also spread FUD in the form of terrible recommended sampler settings.<p>If you&#x27;re using llamacpp, turn on top-n-sigma with sigma of 1, turn off top-p&#x2F;top-k. You&#x27;ll thank me later.
  • LeBit1 hour ago
    <a href="https:&#x2F;&#x2F;xcancel.com&#x2F;Alibaba_Qwen&#x2F;status&#x2F;2088280182356611304" rel="nofollow">https:&#x2F;&#x2F;xcancel.com&#x2F;Alibaba_Qwen&#x2F;status&#x2F;2088280182356611304</a>
  • onlyrealcuzzo2 hours ago
    If the benchmarks don&#x27;t lie, this is getting very close to Opus 4.6 capability - which was the turning point for me for when AI was &quot;good enough&quot; that it became very hard to justify not using it.<p>I&#x27;m sure there&#x27;s some benchmaxxing going on, and some things you get only with a a larger model.<p>But I&#x27;m feeling pretty confident if not by Gemma 5 than by mid 2028 we&#x27;ll have local models that are almost always as good as Opus 4.6 was and in many cases far better.
    • DanielHB1 hour ago
      What kind of things you only get with a larger model?
      • redox9913 minutes ago
        Asking it factual information[1]. You just can&#x27;t compress the entire human knowledge into a 30GB file.<p>[1] Without searching the internet. And even if you allow it, you&#x27;ll get much worse results because search means browsing and parsing the top results, and search results are horrible, whereas internal knowledge from training encompasses the entire internet plus all books including very niche stuff.
      • onlyrealcuzzo32 minutes ago
        Similar to the way they asked Sol to solve Erdos problems, that&#x27;s what I want my model to do for programming.<p>I don&#x27;t want to try to take my best educated guess at what the best design is BEFORE implementation - especially if you&#x27;re designing a feature for a codebase you&#x27;re not an expert in, you don&#x27;t know like the back of your hand (i.e. one that is mostly or entirely LLM generated).<p>What sounds good on paper - often times becomes unideal in practice when you get to the reality of implementation.<p>It may not be worth re-architecting your entire system to get to a &quot;pure&quot; design that would be the best - all things considered.<p>Instead, I&#x27;d like the model to independently design many plausible and coherent good solutions, then implement each of them, then intelligently pick the few winners (after its fixed any bugs that could be causing promising solutions to look artificially bad) - unless there&#x27;s an obvious one - and then give me the data I need to make an informed decision on which one to go with, all before I even look at the design or implementation.<p>You&#x27;re not getting this from a one shot prompt from a 30B model today. You can&#x27;t even really get it from Sol or Fable - IME. But you can get somewhat close.
        • alex7o29 minutes ago
          This is a harness problem not a model problem, try prime agent it can do that and it will do it well even :P but you need to prompt it in according to its tools and processes.
      • versteegen1 hour ago
        IME using 5.6 Luna and DS V4 Flash, I notice that although they are excellent at programming, even Opus-like in the way they try to debug, the thing they are worst at is inferring user intent and making good decisions with little information. They are absolutely <i>terrible</i> at that, will misinterpret small wording ambiguities. I suspect that&#x27;s an ability you can&#x27;t add with RL training, that it requires the depth of understanding from vast pre-training.
  • jedbrooke1 hour ago
    I hope the bonsai team makes another 1bit quant of this model (or releases code&#x2F;instructions on how to do it), using the Qwen3.6 27B on my 16GB mac mini has been wild . The 1bit quant feels like opus level… for the first couple turns. Then it has trouble eg switching from plan mode to act mode. This is mostly mitigated by starting a new session. (tbf this limitation is called out on the hf page)<p>I saw unsloth has 1bit quants too so I might check that out, anybody have experience with those?
    • spwa455 minutes ago
      Sounds like you need to check what the max context is set to ...
      • jedbrooke39 minutes ago
        100k is all the context I have ram for, this is with any auto-compact turned off. This is using Cline in vs code. I’m sure I could tune the system prompt and mode switching more to work better with this specific model, but I haven’t gone down the custom harness rabbit hole yet.<p>And this is also specifically for the 1bit quant version. I don’t think the fp8 or even fp4 versions have this issue, but I haven’t tried those much
  • Casteil1 hour ago
    One thing a lot of people don&#x27;t seem to factor when hyping Qwen is how much models like this tend to &#x27;overthink&#x27; with seemingly endless &#x27;second guessing&#x27;. 3.8 seems no different from what I&#x27;ve tried thus far.<p>As capable as it is, it&#x27;s hard to justify using it when a competing model (e.g. Gemma4:26b-a3b) can consistently achieve the same or similar response with only 1&#x2F;10th as many &#x27;thinking&#x27; tokens, achieve much higher tokens&#x2F;second, and take a small fraction of the time. I suppose &#x27;YMMV&#x27; depending on your use case.<p>Also, I haven&#x27;t used it enough yet to see if it&#x27;s prone to infinite looping, but its predecessors sure were.
    • satvikpendem5 minutes ago
      Reduce or turn off thinking:<p><a href="https:&#x2F;&#x2F;huggingface.co&#x2F;froggeric&#x2F;Qwen-Fixed-Chat-Templates" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;froggeric&#x2F;Qwen-Fixed-Chat-Templates</a>
    • lrvick1 hour ago
      Use 3.6 27b as a daily driver for months with charmbracelet crush. Gemma 26b-A3b is not even remotely comparable in terms of coding for me. YMMV depending on how you work, what harness you use, etc I suppose.
    • ThouYS1 hour ago
      gemma4 can&#x27;t hold a candle to 3.6
    • cyanydeez1 hour ago
      You can add a thinking budget thats not much effort in llamacpp. You can align the cut off message with your agent instructions.<p>What you describe is a engineering harness problem.<p>If you, and i mean the royal you, actually read tge thinking traces you can see and figure out where its stuck<p>This means an effective harness would observe when the model is overthinking and step in with reasonable redirection, like increasing logging.<p>Llamacpp can set reasoning budget and message per reauest, so it can be dynamic.<p>Your complaint is &quot;skill issue&quot; based and will be resolved by people who do something ither than vibe code react demos.
  • davidw0 minutes ago
    I don&#x27;t know much about the production of these models. How hard would it be to &#x27;fork&#x27; something like this and have it not be full of CCP indoctrination?
  • Almondsetat27 minutes ago
    The $1500 Intel B70 with 32GB of VRAM can run this model at max context with good performance, btw. If you don&#x27;t want to drop $5-10k for running DeepSeek this is your best budget option for local refactor&#x2F;small scale dev help
    • bogzz26 minutes ago
      Oh, can it work with the &#x2F;v1&#x2F;completions&#x2F; auto-complete endpoint?
      • Almondsetat20 minutes ago
        Sorry, I wrote autocompletion by force of habit. I simply meant it can complete code you have already created a structure for, which personally is very nice
        • bogzz18 minutes ago
          I thought so, but thanks for the clarification. I am a little bit disappointed that local autocompletion models have been left by the wayside in favor of models post-trained for agentic coding. Both Codestral and Qwen-2.5-coder are more than a year old at this point, but local auto-complete seems to me to be such a great usecase.
  • TomGarden2 hours ago
    Any tips on the best approach at running this at an M4 Max 128GB? Token throughput was a bit slow with the last 27B one (MLX), ended up using the A3B variant but if I could get this one to reasonable speed I&#x27;d much prefer it.
    • mft_1 hour ago
      Go for a slightly more quantised version, and experiment with different MTP settings. I find that MLX versions are marginally faster on my 64GB M1 Max, but I usually use Unsloth&#x27;s GGUFs via llama.cpp as there&#x27;s a much greater range of quants available and I prefer llama.cpp. MTP sometimes also helps a little, but I suspect it&#x27;s less helpful on my system than others.<p>Unsloth: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-GGUF" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-GGUF</a><p>This might work for you, but I didn&#x27;t get on very well with MTPLX when I tried it a while back; YMMV: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;Youssofal&#x2F;Qwen3.8-27B-MTPLX-Optimized-Speed" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;Youssofal&#x2F;Qwen3.8-27B-MTPLX-Optimized...</a>
      • evgen1 hour ago
        This is the way if you need speed. It costs a little bit in smarts, but compare the MTPLX option listed above with the oQ4e-mtp quant using oMLX. The good cacheing layer in oMLX will help things feel faster for some classes of tasks in my experience.
    • jwr32 minutes ago
      I have an M4 Max (unfortunately 64GB). I have been running the Qwen 35B A3B one for a while now, after testing and benchmarking a number of models. That one was consistently the best in class for tasks like despamming, E-mail classification, OCR and dictation post-processing. It was also really fast (90 tokens&#x2F;s).<p>I&#x27;m benchmarking the 3.8 model now, it seems it is better (near-perfect score on my E-mail spam filtering benchmark, best of any model I tested, ever). But it is slow.<p>One thing I would recommend is keeping an eye on MTP parameters. I tested and benchmarked extensively, and I use `--spec-draft-n-max 2` with llama.cpp. Longer sequences actually decrease overall performance.<p>As for running, I ended up using llama.cpp and its llama-server, with a bunch of scripts written by AI, because I got tired of LM Studio not implementing the image-related parameters which made gemma4 useless for OCR.
    • seanmcdirmid38 minutes ago
      27B is a dense model so it will be slower with an MoE (A3B), but should have better quality? I still haven’t found very good uses cases on my M3 Max for dense models. Even if you can find a MTP version, it doesn’t help much, especially if you compare against an MoE with MTP as well.
    • UncleOxidant1 hour ago
      Wait for the MTP variants that will likely be out within days. I&#x27;m on a 128GB Strix Halo box and for 3.6-27B 8bits I was getting about 9tok&#x2F;sec (not great). With MTP that gets closer to 18 tok&#x2F;sec (kind&#x27;a usable).
      • anana_59 minutes ago
        Seems like MTP is available immediately!
    • LoganDark1 hour ago
      Unfortunately, that chip just doesn&#x27;t really have the memory bandwidth to run this (or nearly any) model at acceptable speeds. I have the exact same chip (M4 Max 128GB) and I&#x27;ve been trying to optimize a completely purpose-built implementation with Fable and this is just not possible. Even if you could reach the full 576GB&#x2F;s, it&#x27;s just physically impossible to exceed these numbers with the model&#x27;s architecture:<p>2 bpw - ~85.7t&#x2F;s<p>3 bpw - ~58.0t&#x2F;s<p>4 bpw - ~43.9t&#x2F;s<p>6 bpw - ~29.5t&#x2F;s<p>8 bpw - ~22.2t&#x2F;s<p>16 bpw - ~11.2t&#x2F;s<p>without cheating. You&#x27;d have to exclude layers, skip operations, etc. basically do stuff the model wasn&#x27;t trained for. And speed collapses so fast with context that even 2 bpw would be looking at ~37.6t&#x2F;s after just 128K tokens.<p>MTP only improves the situation by up to 2x in the ideal case, while drastically reducing the performance floor. While optimizing a 9B model on this hardware, I&#x27;ve found that the GPU just doesn&#x27;t have enough FLOPS to handle speculating more than one or two tokens ahead on a single stream, regardless of quant level, simply because of the arithmetic cost of the forward pass. The 27B model would be even more expensive than that, potentially such that it&#x27;s already bottlenecked by the GPU itself rather than memory.<p>I wouldn&#x27;t get my hopes up for the 35B-A3B either. Not only is it reportedly much less intelligent, but I hit a similar ~85t&#x2F;s wall in practice (again with highly specialized inference).<p>Without speculation I can reach around 120t&#x2F;s on Qwen3.5-9B and with n-gram speculation (not even MTP; this derivative didn&#x27;t come with one) around about 150t&#x2F;s on average. This is on the very very edge of what I&#x27;d consider acceptable for me to even consider using such a compact model. YMMV due to the silicon lottery but the situation isn&#x27;t good.
    • brcmthrowaway1 hour ago
      Check out MTPLX and limit your context size.
  • NorwegianDude2 hours ago
    If the benchmarks are a real indication, we now have a local model that is runnable on a high-end personal PC that trades blows with the leading model Claude Opus 4.6 Max from half a year ago.<p>Insane if that is the case. Downloading now!
  • T0mSIlver1 hour ago
    Unsloth Q4_K_M on a single 3090, llama.cpp &quot;Generate an SVG of a pelican riding a bicycle&quot; first try <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;LocalLLaMA&#x2F;comments&#x2F;1voa3ch&#x2F;comment&#x2F;p3o0om9&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;LocalLLaMA&#x2F;comments&#x2F;1voa3ch&#x2F;comment...</a>
  • xlayn1 hour ago
    The file &quot;Just loads&quot; on llama.cpp, the Unsloth <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-GGUF" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.8-27B-GGUF</a> is an MTP file, I see mostly the same speed on pp and generation. There has to be something wrong with those benchmarks, I find extremely hard to believe a 27B model can work similar or exceed opus 4.6.
    • minimaltom27 minutes ago
      Worth distinguishing knowledge&#x2F;task benchmarks from IF &#x2F; agentic. It doesn&#x27;t seem out of the question that you can have a small model thats generally good at instruction following and long-horizon agentic, as usually in those cases any requisite knowledge is in the context.<p>Most of the benchmark improvements afaict are in agentic and instruction following benchmarks.
  • erdaltoprak2 hours ago
    This is one of the most important model releases since most use cases don&#x27;t need SOTA&#x2F;Frontier<p>If you want Qwen3.8-27B Serving Configs for the DGX Spark vLLM NVFP4 and RTX 4090 llama.cpp GGUF I added the setups here <a href="https:&#x2F;&#x2F;x.com&#x2F;ErdalToprak&#x2F;status&#x2F;2088299678085308761?s=20" rel="nofollow">https:&#x2F;&#x2F;x.com&#x2F;ErdalToprak&#x2F;status&#x2F;2088299678085308761?s=20</a>
  • tosh2 hours ago
    27b dense model at Opus 4.6 level<p>Opus at home<p>I hope there also will be a new ~10b variant
    • UncleOxidant1 hour ago
      I&#x27;m hoping for a 3.8-122B MoE
    • yassa91 hour ago
      can you tell me ideas of usecases of 9 or 10B language models ? I cant find any usecases other than training a lora on them to give good bash commands for example
      • mring336211 hour ago
        9B Qwen models are good and fast for local python coding tasks.
      • tosh1 hour ago
        they are all overlapping but:<p>categorization, information retrieval, semantic search, image description<p>also with the model as part of an agentic system with tool calling<p>(edit: it is quite impressive what a small model in a feedback loop can do)
  • piyh1 hour ago
    Qwen 3.6 is ~$2&#x2F;m tok, 3.8 should be drop in replacement. Gemma 31B is $0.34&#x2F;m tok. The price differential on these models is massive on openrouter.
    • SparkyMcUnicorn0 minutes ago
      [delayed]
    • jjice48 minutes ago
      Where do you see that? From what I can see on Open Router, Qwen 3.6 27B (the closest dense equivalent to Gemma 31) is $0.28&#x2F;m. Am I missing something?<p><a href="https:&#x2F;&#x2F;openrouter.ai&#x2F;qwen&#x2F;qwen3.6-27b" rel="nofollow">https:&#x2F;&#x2F;openrouter.ai&#x2F;qwen&#x2F;qwen3.6-27b</a>
  • mraza00746 minutes ago
    Man what a week, We just had GLM 5.3 that came out and then we had smaller local model Qwen3.8-27B from Qwen<p>Just tried using Pi Agent and looks very promising
  • chvid2 hours ago
    These are massive improvements - and something you can actually run on a laptop.
  • mickeyp1 hour ago
    Model benchmarks are useful, to a point, but it is the long tail of things you do with the model that determines if it&#x27;s good at a wide range of activities. Ant&#x2F;OAI, to their credit, build their models -- even the small ones -- so they follow instructions and do tool calling well, without the system prompts confusing them. This is especially important for long-horizon tool calling.<p>So one open weight model might &quot;meet&quot; Opus or whatever on benchmarks, but then fail to follow a simple answer format and also tool call correctly. The models are whipped to within an inch of their lives to strictly adhere to their post training quality gates.
  • theanonymousone1 hour ago
    I&#x27;m wondering whether any provider can offer this for cheaper $&#x2F;token than the new DSv4 Flash, which is both cheaper and smarter :&#x2F;<p>Completely local use is a different story, of course.
  • minimaltom1 hour ago
    Architecture thread! Afaict they continue to use gated attention + delta net, which was also adopted+adapted by K3, but im surprised theres no improvements to the residual stream (deepseek are using manifold hyper-connections, kimi have attention residuals) ?<p>Perf improvements seem to all come from training?
    • anana_1 hour ago
      As was the case with GLM 5.3, it seems that there is still much juice to be squeezed from post-training
  • bertili59 minutes ago
    Wow. Speed improved as well. 200t&#x2F;s on a RTX 5090!<p><a href="https:&#x2F;&#x2F;x.com&#x2F;sgl_project&#x2F;status&#x2F;2088281320422322413" rel="nofollow">https:&#x2F;&#x2F;x.com&#x2F;sgl_project&#x2F;status&#x2F;2088281320422322413</a>
  • arjie1 hour ago
    I use the Qwens as a vision model for my DeepSeek V4 Flashes to handle. But the Qwens run on old RTX A6000 Ampere. Does anyone know if there&#x27;s any news about INT4&#x2F;AWQ quants for the RTX A6000?
    • ericd53 minutes ago
      Was recently thinking about doing something similar, do you basically just have the qwens describe what they see for the flashes?<p>Was considering adding a LoRa&#x2F;vision head to Flash, but seems like it could take a while to get it right.<p>If DSv4 Flash was multimodal, I’d probably be done model shopping for a while
      • arjie27 minutes ago
        Same, with a multimodal DSv4 Flash I would just stop paying attention to things. Very smart, and at 260 tok&#x2F;s it&#x27;s too fast to care about anything else. If you ever graft something like that I would love to hear about it.<p>Yes, I have a very dumb flow. The harness has a describe_image tool that takes an image and a prompt and so DSv4 Flash uses it to get an idea of what it&#x27;s looking at.
  • irthomasthomas1 hour ago
    Why don&#x27;t qwen&#x2F;alibaba host the model themselves? I was looking forward to trying it on their coding plan. Google are the same way with their Gemma models.
    • spwa454 minutes ago
      Pretty sure you can use Gemma models on Google&#x27;s &quot;Vertex AI&quot;.
  • synergy201 hour ago
    I wish this can run directly on my RTX 4090, seems like 30B is the sweet spot for dense model to run locally, sadly RTX 5090 is very expensive and I need a new PC and new power supply(and UPS) to run that, adding a second RTX 4090 is another option, but not sure if my PC can do that yet.
    • KyleJune10 minutes ago
      Others in this thread said it runs on RTX 4090.
    • baron3dl1 hour ago
      even a 3090 will give you the VRAM headroom. i run Q8 on an 3090&#x2F;A6500 combo. well, Q8 of 3.6-27B. I&#x27;m building the Q8 GGUF for 3.8 now, assuming mine will finish before someone else&#x27;s.
  • TomGarden2 hours ago
    Really excited to see what people do with this. 3.7 27B was probably the best compromise between size and intelligence to run on consumer hardware
  • lossolo10 minutes ago
    Why weren&#x27;t the points merged again from the &quot;dupe&quot; thread that had 289 points?<p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=49299684">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=49299684</a><p>What a weird mechanism. If someone is judging a thread&#x2F;topic&#x2F;event impact by the number of points it got, then doing this unfairly degrades that thread.<p>It should have deduped by user and combined the 168(at the time of writing this comment) + 289 points. Just add the twitter link from the previous thread as an additional link in the description, like you normally do, move all the points over, and remove the old thread.
  • ThouYS2 hours ago
    I am so happy right now, qwen3.6-27b was an absolute game changer. To see another one in the same league.. phew
  • jlkivey1 hour ago
    Note: on the model card the comparison to Opus is Opus 4.6 Max, not 4.7
  • kunver2 hours ago
    Looks like a pretty significant improvement on the DeepSWE benchmark compared to the previous 27B model.
  • yassa91 hour ago
    Can anyone who has that specific personal test he tries on different models , and tries this model , to tell us here if possible , how good or bad is this new model ? compared to others ?<p>I only trust those users genuine personal tests
    • alyandon1 hour ago
      There is a down to earth guy on YT that performs a series of tests against LLMs running on non-god-tier commodity hardware. He will likely be testing this soon enough.<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;@lukesdevlab" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;@lukesdevlab</a><p>I don&#x27;t know if that is what you are looking for or not and as always your experiences may be different.
      • yassa91 hour ago
        thaaanks man, this channel seems really informative, although &lt; 10K subs only !
        • alyandon59 minutes ago
          It&#x27;s a relatively new channel - but yeah - I feel the guy puts a lot of effort into what he does and deserves more subs.
  • kristopolous2 hours ago
    q4km is about 48 tps on a 4090. my llama.cpp params are --flash-attn on --parallel 1 --load-mode mmap
    • m_ke2 hours ago
      With spec decode should easily get to &gt;100tps<p>on my dual 3090s qwen 3.5 27b was running at around 110tps using the config from <a href="https:&#x2F;&#x2F;github.com&#x2F;noonghunna&#x2F;club-3090" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;noonghunna&#x2F;club-3090</a><p>make that 200tps on a single 5090, 4x faster than opus <a href="https:&#x2F;&#x2F;x.com&#x2F;radixark&#x2F;status&#x2F;2088285681131110446" rel="nofollow">https:&#x2F;&#x2F;x.com&#x2F;radixark&#x2F;status&#x2F;2088285681131110446</a><p>devs about to get handed a two 5090 box each and told to max that out
  • naasking12 minutes ago
    Can anyone confirm whether this new Qwen release is any more concise when thinking? Overthinking was the biggest (only?) downside of the Qwen models.
  • ThouYS1 hour ago
    3.6-27B on little-coder was already mind blowing. looking forward to this guy!
  • anana_2 hours ago
    Monstrous benchmarks! Hoping it is not benchmaxxed.
  • tristor20 minutes ago
    I&#x27;m hoping to see folks distill this with current generation Opus &#x2F; Fable reasoning traces. I have had my best results locally so far from Qwopus (Qwen 3.6-27B w&#x2F; Opus 4.6 reasoning distilled). This looks GREAT and I am definitely setting this up later today.
  • tosh1 hour ago
    also cool: Qwen 3.8 27b is multi modal!
    • gurkwart1 hour ago
      strong visual reasoning apparently, which is nice. still lacking native audio however. hoping for more companies to embrace the spirit of something like `gemma-4-12b-qat` for actual multi-modality (text, image, video, audio).
  • pu_pe1 hour ago
    Seems to be SOTA for its size. Hopefully independent benchmarks will come soon.
  • kunver2 hours ago
    Welcome deepseek flash flash!
  • expedited1232 hours ago
    Kinda was expecting to see Gemma 4 26B in benchmark comparisons :(
    • kamranjon1 hour ago
      Since Qwen 3.6 27b outperforms Gemma 4 26b in most benchmarks I&#x27;m not sure the value - also Gemma 26b is a MOE model whereas this is a dense model, so not typically direct competitors at their sizes - Gemma 4 31b comparison would be interesting though.
  • filup1 hour ago
    <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=48403639">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=48403639</a><p>my prediction was way too far out. 4.6 at home! Woo.
  • altruios2 hours ago
    remember to let llama.cpp catch up to anything new in this model. Save your judgment until about 2 weeks of use.
    • chrismartin1 hour ago
      &#x27;Good&#x27; news, there seems to be nothing new architecture-wise. Same as Qwen 3.5 and 3.6, so llama.cpp doesn&#x27;t know the difference.
  • brcmthrowaway1 hour ago
    This with ddg mcp to fill in world knowledge. Are local models the future when computer architectures catch up?
  • alpha_trion2 hours ago
    NICE, i&#x27;ve been waiting for this drop, thanks for posting this
  • cmrdporcupine33 minutes ago
    I found this kind of amusing while running it (using Pi as the harness). Don&#x27;t know if this is evidence of intense fine tuning from Claude but it smells like it...<p><i>&quot; The user wants me to explore the repository at XXXX and report back. Let me start by understanding the project structure, reading the CLAUDE.md file, and getting a general overview of what this repository is.<p>Let me start by reading the main project documentation and exploring the directory structure.<p>I&#x27;ll take a look around this repo. Let me start by getting a lay of the land.<p>read resource CLAUDE.md (ctrl+o to expand)<p>ENOENT: no such file or directory, access &#x27;XXXX&#x2F;CLAUDE.md&#x27;&quot;</i>
  • Mr_Eri_Atlov1 hour ago
    This is the homelab model hands down
  • brcmthrowaway2 hours ago
    My Strix Halo is about to go overdrive!
  • ramon1561 hour ago
    need another fable uncensored merge with 3.8, really curious what it can deliver
  • steffi_oliver29 minutes ago
    [flagged]
  • RobertasTa55 minutes ago
    [flagged]
  • fintuner1 hour ago
    [flagged]