• Hacker News
  • new|
  • comments|
  • show|
  • ask|
  • jobs|
  • nozzlegear 13 hours

    1-bit, 2-bit, penny and dime.

  • 18 hours

  • 18 hours

  • quietraster 17 hours

    the 4-bit matching bf16 on terminal-bench is a useful data

  • seamossfet 15 hours

    If you want to do a 1-bit model you have to QAT at pre-training with way more data than chinchilla to compensate for the cliffs (like 50x). Quantization on an existing pre-trained model will almost always collapse at 1-bit

  • dvh 17 hours

    Could this be used to estimate how many fingers LLM have?

  • paidx 8 hours

    [flagged]

  • mrbonner 15 hours

    I use a 2-bit quant from Unsloth on my MBP M5 32GB of RAM. It run slower than molasses at 2 too/s kind of thing. Not sure it is usable at that rate for anything.

  • syntaxing 17 hours

    I’m more curious how each 4 bit quant compares. It seems like NVFP4 outperforms Q4_K_M in terms of speed and top 1 but is only good for expensive Nvidia cards

  • Neat_comfort007 5 hours

    [flagged]

  • sanjusangh 14 hours

    Isko ek karna hai

  • KennyBlanken 14 hours

    It's strange that the author has completely ignored the 3 bit quants which allow someone with a 16GB GPU to have 100-120k and still get full performance. You can't run any of the 4-bit quants on a 16GB gpu with enough context to be useful for all but the most basic tasks.

    General purpose agents can need up to 30k just to reply with "1+1=2" because their prompting is so overloaded. 60-70k is decently usable, still not great for anything complex. A long running task in a general purpose agent can easily hit 100k.

    What the vast majority of people care about is performance around what desktop consumer GPUs can run. 8GB, 10, 12, and 16GB of VRAM. What do models that will run at full performance, do?

    Also important to know is how Qwen3.8-27B stacks up against qwen3.6-35B-A3B, which due to being MoE, will run on a 16GB card with plenty of speed 90% of the time, at higher quant - so you get more parameters and better quant. But 3.8 is supposed to be "better", so...?

  • john_rood 17 hours

    [flagged]

  • hefu_hk 6 hours

    [flagged]

  • InvectusXIV 18 hours

    [flagged]

  • rvba 16 hours

    Those benchmarks are very interesting.

    But is there any model that actually works in a decent way at quantization of 1?

  • anyfoo 15 hours

    > As you may see, the scores are around the random guessing level, with the smallest model being below that threshold.

    Err… can someone explain to me what is meant here? Surely the model wouldn’t consistently “guess wrong” compared to randomly, as that would be better. I guess some things like general coherency (i.e. is it even readable or gibberish) factor into that score?

    magnat 15 hours

    Those are multiple-choice questions. If some of them are "trick questions", where obvious answer (e.g. the value taken directly from question's text) is wrong, bad model might perform worse than a dice.

    On the other hand, not sure where from 25% baseline for random answers come from. Since this is multiple-choice-out-of-4 test, random guessing should be correct in 1 in 15 cases, not 1 in 4.

  • qsbuilder 9 hours

    I always wonder is it safe to run one of these models on a personal pc, or do you guys recommend something like docker, sorry a bit new to all of this.

    bitwize 9 hours

    Yes, it's fine to run a model on bare metal. The model is just a token predictor. Leave out the fine semantics about this; it's a function taking a set of input tokens to output tokens.

    It can't mess with your computer or files until you hook it to a harness, which interprets some of the model's output as commands to execute. So, model on bare metal, harness in a container or VM.

  • zrail 17 hours

    I've been running Unsloth IQ3_S on my 5060ti with mmproj offloaded, getting 600-1000 prefill and 30-50 tg with this config:

           /data/llm/llama.cpp/build/bin/llama-server
            --threads 4
            --threads-batch 8
            --batch-size 4096
            --ubatch-size 256
            --port 9999
            --temp "1.0"
            --top-p "0.95"
            --top-k "20"
            --min-p "0.0"
            --presence-penalty "0.0"
            --reasoning auto
            --reasoning-preserve
            --reasoning-budget 4096
            --gpu-layers-draft all
            --spec-type draft-mtp,ngram-map-k4v,ngram-mod
            --spec-draft-n-max 3
            --spec-draft-p-min 0.75
            --spec-ngram-mod-n-match 24
            --spec-ngram-mod-n-min 4
            --spec-ngram-mod-n-max 16
            --spec-ngram-map-k4v-size-n 8
            --spec-ngram-map-k4v-size-m 16
            --spec-ngram-map-k4v-min-hits 1
            --n-gpu-layers all
            --ctx-size 131072
            --repeat-penalty 1.0
            --jinja
            --metrics
            --model /data/llm/models/unsloth/Qwen3.8-27B-UD-IQ3_S.gguf
            --chat-template-file /data/llm/models/qwen3.6-chat-template.jinja
            --fit off
            --flash-attn on
            --cors-origins localhost
            --mmproj /data/llm/models/unsloth/Qwen3.8/mmproj-BF16.gguf
            --no-mmproj-offload
            --parallel 1
            --kv-unified
            --cache-type-k q4_0
            --cache-type-v q4_0
            --cache-type-k-draft q4_0
            --cache-type-v-draft q4_0

    zrail 15 hours

    Too late to edit, but a few other things to note: I minmaxed the draft config. On my typical coding workloads it gets around 70% acceptance, more variable on prose.

    The chat template is froggeric's fixed qwen template, v22.5 as of today.

  • kouteiheika 17 hours

    Note that these quants are not quantized uniformly, so 4-bit isn't actually a "true" 4-bit here, so these observations won't necessarily hold up to other quants which might be done differently.

    wgd 16 hours

    It looks like they tested Q4_K_M which should be just the standard K-quant without any imatrix calibration. The smaller ones are indeed dynamic though.

    13 hours

  • anyfoo 16 hours

    I have a very interesting self-made coding benchmark, very intricate and technical, but 100% a real world problem I had to solve. I’m not going to further elaborate, since I don’t want future models to train on the solution.

    To my own surprise, Q6_K_XL (from unsloth) comes up with a solution, anything Q5 doesn’t. To further surprise me, so far only the XL Q6 variant managed to solve it.

    The problem, at least as stated, seems to be right on the edge of what the Q6 quantization can do.

    Unfortunately even a successful run is rather long, so I don’t have a whole lot of data.

    But the whole thing sure made me doubt the common idea that you wouldn’t perceive a difference until crossing past 4 bits quantization.

    teaearlgraycold 15 hours

    I thought the wisdom is more so don’t bother going below 4bit and you won’t see a difference above 8bit.

    anyfoo 15 hours

    Depends on the actual audience, I guess. My stated “wisdom” comes in part from /r/LocalLLaMa, and my impression is that the tasks that users there give their models to try them out lean towards rather simplistic, on the reasoning side.

    But there I literally did read “you don’t need anything better than 4 bpw” a bunch of times.

  • kmike84 13 hours

    Measuring quality e2e definitely makes sense.

    But I think there is a bit more to this:

    > Measuring token prediction differences (KL-divergence, top-1 predictions) is easy, but it does not tell us whether the model gets worse at solving tasks.

    A common issue is that it's rarely mentioned on which dataset KL-divergence is computed. It seems the most common dataset is wikitext - maybe because of tradition, to make numbers more comparable? It's not measuring how well the model follows bf16 on agentic tasks.

    I've been trying to check KLD recently for some quants of Qwen 3.8 27B, and the numbers are dramatically different, depending on which dataset you use. KLD computed on agentic traces is much higher, and top-1 % is way lower than if you compute it on chats or wiki text.

    You look at a published number, and see "oh, nice, top1 is 99% - quant is different just in 1 token out of 100", but chances are it's computed on wiki, and on agentic / coding it can be 10 tokens out of 100.

    Common intuition is that on agentic tasks errors compound, and that's why it degrades more than metrics show - but maybe the metrics themselves are also wrong, too optimistic.

    Still investigating it though :)

    xscott 4 hours

    > A common issue is that it's rarely mentioned on which dataset KL-divergence is computed. It seems the most common dataset is wikitext

    Thank you for calling this out. Using Wikipedia snippets for these is a terrible choice. I did a bunch of KL and other stats with the five Gemma 4 models, and the results were non-obvious. Anthropomorphizing:

    Gemma 4 31B: "I guess we'll pretend I said this, but it's not me." (Baseline for stats)

    Gemma 4 26B: "Dude, I'm certain I wouldn't have said this." (Bad KL)

    Gemma 4 12B: "Umm, Me either!" (Similarly Bad KL)

    Gemma 4 E4B: "I might say almost anything, this is fine." (Much better KL!!!)

    Gemma 4 E2B: "I'm basically a toy. Let's play a game!" (Same KL as E4B)

    Anyway, for comparing quantizations, it seems like the largest precision version should be given a one-shot prompt, and the result from that should be used as the corpus for the quantized versions.

    nullc 27 minutes

    > Anyway, for comparing quantizations, it seems like the largest precision version should be given a one-shot prompt, and the result from that should be used as the corpus for the quantized versions.

    Way better than wikitext-- but tells you nothing about errors tending to compound or cancel out.

    Like say a test shows that only one token in a 10,000 token test would be different. Sounds very close, ship it!-- but what if trajectories with that single different token guarantees failure because it sets in motion a cascade of differences that ultimately result in a final distribution that doesn't include the solution?

    stared 2 hours

    Before this experiment I tried to run KLD on various context lengths to see a quantization-dependent deterioration.

    On wikitext2 there was no difference. I concluded these have no long-term dependency and I should use Linux kernel. Still, the same.

    So yes, KLD depends on the dataset. Still, it does not measure what any e2e test does.

    kmike84 1 hours

    Yeah, makes sense; e2e is different and valuable, KLD is not a replacement.

    As for KLD, have you tried it on something which is even closer to e2e task, like agentic traces from https://huggingface.co/datasets/nvidia/Nemotron-Cascade-2-SF... or similar datasets?

    stared 46 minutes

    Nope.

    If you would like to do so, it is easy (and orders of magnitude cheaper) than running benchmarks.

  • sharmajai 17 hours

    This confirms a theory I have to explain the minimal loss in quality when using lower quants (I use IQ3_XXS with an 8-bit KV cache) and the XHIGH (default) thinking level.

    It's well-known that while quantization affects the sampling probability distribution (given the same context, which next token is the most probable), Qwen 3.8 27b seems to offset that by just thinking more and as a result eventually finishing the task (benchmark or otherwise).

    So as long as the thinking (albeit longer) is sound, this leads to the same success rate (as shown in the article) but potentially at the cost of more tokens and hence more time.

    I think it'll be further useful to chart each quantization's used tokens as well, in addition to the success rate.

    Thanks for doing and sharing the research!

    anyfoo 16 hours

    Not for me. As stated elsewhere, even Q5 (!) seems to be enough to kill the model’s ability to solve a particular problem in reasonable time. But that might just be right at the edge of what the model can do in the first place.

    I have another personal benchmark problem (of a very different nature) that Qwen3.8-27B usually can’t solve at all, while Opus and GLM-5.3-Flash solve it consistently and very beautifully.

    lowbloodsugar 16 hours

    If it digs itself into a hole, try low or medium. In the rust coding benchmarks (on my machine) it did better on low and medium because xhigh never finished.

    anyfoo 13 hours

    I observed this as well. I have problems that get solved very quickly using non-thinking mode, but in thinking mode it digs itself into giant holes, that it sometimes doesn't manage to escape from.

    Like wanting to implement an entire emulator to figure out something it could easily glean otherwise (and does, in non-thinking mode).

    anon291 17 hours

    I personally think thinking is basically variable but rate precision. If you are in a 4bit mode but need 2x as many tokens you're just doing fp8 with hoops( of course 4bit multiply is faster)

    kennywinker 16 hours

    Fair enough mental model, except my GPU can’t load the 8bit version and paging from disk makes it way more than 1/2 speed.

    seemaze 17 hours

    As they say, time is money.

    In the age of the rampocalypse, the peasants may not have a choice between the two.. time it is!

    conmod278 16 hours

    Computer science has known the tradeoffs between memory and compute since ages ago. The same could be reflected here.

    chmod775 16 hours

    Smaller models are also generally faster, so thinking "more" may not matter and may even come out ahead.

    celrod 16 hours

    If Q4 takes less than 1.3x as many tokens as bf16 or q8, it could still end up being faster, given how decode tends to be bandwidth bound. The kv cache was still bf16, so a few ops are the same between quants.

  • dotinvictim 17 hours

    local llm don't make sense currently consumer compute is not upto mark it may take atleast 7 more years to be usable

    Winfred-zz 12 hours

    In my own experience, qwen3.8-27b 4bit can consistently find bugs in software written by sonnet 5 and opus 5. But it does do that at maybe 1/10th the speed. Still a pretty good deal if you're coding without wanting to spend big.

    qwen3.8-27b 4bit has a following specifically for being exceptionally gifted for such a small model.

    noir_lord 8 hours

    It’s genuinely the first local model that has actually made me keep it around, it’s pretty good at spotting things existing tooling can’t, like comment rot/drift/summarising accurate git changes, it’s also the first local model that pushes back when it thinks it is right (I don’t dislike that even when it is wrong, it still hallucinates things that don’t actually work the way it confidently states they do).

    It does clear the useful enough to be worth it bar though.

    Zero interest in remote models but local ones if they offer utility, sure.

    Runs pretty well on a 7900XTX as well.

    kennywinker 16 hours

    It literally is usable now. A 5060 for $800 can run qwen3.8-27b 4bit at >40t/s, and the model beats opus 4.6 (max).

    fshr 13 hours

    > 5060

    I think you're referring to a 5060Ti 16GB, yes?

    32k context is easily done there. 64k can work with a more aggressive quant, but you lose a bit of speed.

    kennywinker 12 hours

    Yeah 16gb. For longer context, a 3bit quant is needed. Yes it’s tight on a 16gb card - can’t wait for the bubble to pop so hardware prices fall.

    But I don’t quite follow you - how does a more aggressive quant slow it down? Less bits per token means faster inference not slower.

    TomBombadildoze 16 hours

    Beats Opus 4.6 at what exactly? It certainly isn't code.

    I use a combination of a Claude Max subscription and local inference, including qwen3.8-27b, 4bit. I have found qwen to be absolutely useless at anything but very specific, surgical code changes. In my experience, for anything even remotely nuanced, a frontier model is required.

    kennywinker 15 hours

    https://artificialanalysis.ai/?models=qwen3-8-27b%2Cclaude-o...

    Index methodologies here: https://artificialanalysis.ai/evaluations/artificial-analysi...

    Also see some specific benchmarks here: https://huggingface.co/Qwen/Qwen3.8-27B e.g. qwen scores 61.7 on swe bench pro, while opus 4.6 scores 53.4.

    If you want to argue with the benchmarks, go for it. Fwiw i am not saying qwen3.8-27b is better or as good as the frontier. But i am saying it has crossed the threshold and is now a useful tool for coding and debugging. From my experience, Qwen3.6-35b-a3b was what you describe - it could do surgical edits only.

    brandon272 13 hours

    What configuration? What harness? These matter greatly to how a local model performs, in my experience.

  • alentred 16 hours

    I would be very interested in a similar benchmark for *KV cache* quantizations.

    I use Qwen3.8 27B Q4_K_M for coding sometimes and therefore need a relatively long context. I settled on q8_0 because it is the only way to fit the model + 100k tokens into 24GB VRAM, but still wonder what am I loosing in quality, and what other options are there.

    I also heard that KV cache quantization matters more with longer contexts. It may be interesting to benchmark this too: what the quality looks like on different combinations of model quantization × KV cache quantization × context size.

    quotemstr 15 hours

    You don't have to quantize all layers and all dimensions uniformly, FWIW

    skolos 14 hours

    There was a study specifically related to Qwen3.8 27B that showed that kv cache quantization has almost no impact on this model all the way to q4:

    https://arxiv.org/html/2609.04098

    skolos 14 hours

    On many models that I tested in past context quantization had very bad effect on model performance. However qwen3.8 27b is different.

    I'm now running NVFP4 quantized both weight and cache on my RTX5090 and getting excellent results: 264k cache allocated for pool, 10k tok/s prompt processing, 200 tok/s generation for single stream, or 801 tok/s generation for 8 concurrent streams. Also have about 2Gb vram left for use of OS.

    my coding agents regularly reach 200k context used without noticeable degradation.

    P.S. I used setup from: https://github.com/seanyourhighness/vllm-sm12x-nvfp4-dflash2

    D13Fd 10 hours

    I’m running 27B on a 5090 as well, and the results have been really strong. It does almost as well as, and sometimes better than, a 121gb DS4 model running on an M5 Max 128gb. 27B also flies on the 5090, and at medium think it returns results many times faster than my DS4 setup (the default xhigh is basically broken, though).

    For the kinds of things I use a local model for (legal document review), it’s just spectacular. It also has good vision support. I’ve been using 27B more and more over DS4.

    redox99 8 hours

    Those are really nice numbers. With that t/s, no network latency or queueing it must feel much snappier than cloud models.

    skolos 6 hours

    it is, unless it set to xhigh - it really likes generating tons of tokens for its thinking. unfortunately, for decently reliable coding results you want it on xhigh ...

  • bellowsgulch 18 hours

    Qwen3.8 27B seems like it was clearly supposed to be a high-end consumer open-weights model, but the t/s is so low for me on my old M1 Max 64GB that I hope others are getting use out of it.

    Unfortunately, the calculus has changed and it seems cheaper to me to just use MiMo V2.5 for pennies or DeepSeek V4 Flash instead of using Qwen anymore unless I need a local model specifically for doing reverse engineering work that gets otherwise rejected.

    sidewndr46 16 hours

    I've ran some agentic stuff with Qwen3.8-27B-UD-Q4_K_M on my RTX 3090. It's fast enough to be usable in my opinion. But Qwen3.6-35B-A3B in the same quantization is much faster

    sroussey 17 hours

    Have you tried https://huggingface.co/prism-ml/Bonsai-27B-mlx-1bit ? PrismML is the only people i am aware of doing 1bit that is decent.

    Xeoncross 18 hours

    I leave it running at night. No danger of burning my token subscriptions and it has hours and hours to run slowly with a manager like: github.com/kunchenguid/gnhf

    ThrowawayTestr 17 hours

    I treat it like image gen. Send a prompt then come back in 40 minutes.

    spider-mario 18 hours

    > Qwen3.8 27B seems like it was clearly supposed to be a high-end consumer open-weights model, but the t/s is so low for me on my old M1 Max 64GB that I hope others are getting use out of it.

    Have you tried it with MTPLX? I get around 30 tok/s with it, also on an M1 Max with 64GB.

    bellowsgulch 16 hours

    Thanks, man! I’ll go use that now that I know. llama-server the last time I used it for inference with this model wasn’t able to produce work fast enough to reach those numbers.

    SwellJoe 17 hours

    Even at 30 t/s, 3.8 thinks so long, even on medium, it still takes 3x or more longer than any cloud model, in my testing.

    lowbloodsugar 16 hours

    I've got an M1 Max 64GB too. It's just not an LLM-class workstation. Give it a year and buy an M7 and you'll be laughing. Right now is a really bad time to invest in anything - using the cloud is the cheapest option, especially for open weight models.

    Xeoncross 18 hours

    Nice, which model quantization is this? Is it on huggingface?

    spider-mario 16 hours

    MTPLX is this software: https://github.com/youssofal/MTPLX

    I tried it with the author’s 4-bit quant of Qwen 3.8 27B: https://huggingface.co/Youssofal/Qwen3.8-27B-MTPLX-Optimized... (but no need to download it manually; MTPLX will ask which one you want).

  • Farmadupe 17 hours

    hmm, assuming that this article is part written by claude and part human-written, can anyone help me find a rule of thumb for "how to know if the article is worth reading"?

    Because on the one hand, the prose and the presentation is painful (narrating irrelevant points, nonlinear X-axes, ambiguous chart labels, etc etc),

    But on the other hand, the result that I'm assuming the author means to communicate ("on these evals, generation quality seems fairly good") sounds worthwhile to share?

    Because I really struggle with this question at the moment. Am I allowed to draw an adverse inference that "if the writeup presents irrelevant text side by side with the data, then this may be a sign that the author does not understand the task that they are attempting to write up"?

    JSR_FDED 17 hours

    You don’t need anyone’s permission. You have only so much attention, why spend it wading through slop?

    clircle 17 hours

    I think the advice is the same regardless of AI use: read articles written by authors that have a history of high quality writing.

    stared 16 hours

    I wrote this blog post myself, with AI for proofreading (typos and grammar, but not style). There were a few singular sentences for which I had a writer's block, but not much besides that.

    So, if there are irrelevant remarks, these are mine. :)

    Charts are vibe-coded - but it took quite a bit of hand-holding to get something decent. And the logarithmic scale for model size is my conscious choice (against Claude's initial ideas).

    Ey7NFZ3P0nzAe 2 hours

    Hi,

    If you ever get to writing a blog post about kv cache quantisation, i'm interested in quantising K differently than V

    vardalab 16 hours

    Just ask your freaking agent to read it for you and extract the information. That's what it's all about. Why would I be reading these articles other than information?

    kennywinker 16 hours

    Claude, read Love in the Time of Cholera for me and summarize the information contained. You are an expert book reader and understander. Make no mistakes.

    nhecker 15 hours

    I normally don't appreciate snarky comments on HN, me being but a simple curmudgeon wanting pure information and the occasional opinion. but this one actually makes a good point, even if it's not stated explicitly. Reading this book is a wonderful experience because of the way it's written. Reading the plot summary (from an AI or otherwise) yields nothing but the dry husk of that experience.

    nottorp 14 hours

    Well, sadly it's off topic on HN where everyone seems to only read non fiction.

    Or they don't admit to reading fiction...

    cogman10 17 hours

    IMO, whether or not an LLM was used in the writing process doesn't really matter and I think it's a bit annoying that articles are being dismissed out of hand because of that.

    The line is "Is this an interesting and accurate article that concisely makes it's case".

    LLMs love to burn paragraphs writing about nothing which is why it's generally poor writing. Humans can do the same thing if they are trying to make very little information feel more substantial.

    I say, stop trying to determine if an LLM was used and start judging based on your subjective measure that you'd have used before LLMs became widespread.

    lowbloodsugar 16 hours

    Sure, but if you're going to publish it, at least run it through an edit prompt and tell it to remove clickbait "Its not X, its Y" rubbish. Like literally calling examples clickbait in the prompt has given me better results. Interestingly, I have a lot less trouble with the first draft with Qwen than with Opus.

    Farmadupe 17 hours

    (If it helps, I ask my own question of myself too -- I mostly don't write code by hand any more as I find that an LLM writes it faster and with less bugs -- Is that therefore proof that my time was never worth my paycheck? I hope not but at the same time I would actually be proud if I had got away with being an accidental charlatan/fraudster at my employer's expense during my entire career)

    -----

    Similarly, if what I said really is true, I would be implying that LLMs are charlatan/fraudster detectors (to some statistical level). And I refuse on principle to believe that that is actually the case.

    breezybottom 9 hours

    It's not nearly as annoying as being tricked into reading them.

    JSR_FDED 17 hours

    Except that wasting the reader’s time became a lot easier with LLMs.

    cogman10 17 hours

    Yes, LLMs make it a lot easier to produce a lot more garbage. That's not an exception to my point. If something is well written then it doesn't waste the reader's time.

    dofm 17 hours

    My main problem — which I am sure being middle-aged compounds — is that I struggle to retain information that an LLM has written or produced. I cannot explain why but it is a consistent problem.

    In a week’s time I might remember the substance of your comment and some of its shape as a matter of course. Nothing LLM-written that I see today will stick, no matter how curated it was.

    cogman10 17 hours

    Perhaps it's just a bias? You are already negatively biased against LLM writing so you disregard stuff you read when you suspect it's an LLM. This could also be a selection bias. It may be that you generally struggled to retain information but you are more aware of it when LLMs are involved.

    dofm 16 hours

    I don't think so, no, because it extends to LLM-generated text I want to recall.

    I use LLMs to generate starter/tutorial material. I may hate the way Claude writes but I absolutely don't hate the way Gemma 4 writes. But I have to continuously consult it in a way that I do not with human-written text, which gets its message across in a more persistent way I find less troubling.

    (This non-memorability extends to AI images and video.)

    You are right that there are some confounding factors in my life but while I was worried about middle age affecting recall, I find actually I am still remembering stuff humans wrote pretty much fine.

    ETA: there is one thing that I have noticed that does affect recall that is specific to LLMs: watching text roll out word-by-word in LLM chat, I think, damages recall. It's engaging the wrong kind of memory and focus.

    So I now let it generate and I'm trying to find decent ways to format it e.g. as PDF, to give it the best chance.

    This could be generational; there were many studies twenty years ago that suggest that people a decade or so younger than me who grew up with full colour books and magazines and multimedia can read less-linear text layouts more comfortably, for example, so it's not out of the question that there's something generational going on here too.

    wiml 14 hours

    This is a complaint I hear others voice and one I have myself. I think it comes down to the text being poorly written. Sure, LLMs are good at a lot of the surface indicators of good writing: they have a wide vocabulary, they use grammatical sentences, they break up the text into paragraphs, sections, and lists. But they're terrible at organizing the text and marshalling a concept to get it across to a specific audience. The section and paragraph breaks are meaningless, the metaphors are unenlightening, the rhythm is exhaustingly uniform. Pre-LLM, you'd find this kind of text in marketing materials, corporate PR, and heavily padded sophomore essays.

    dofm 13 hours

    The weird, sort of sub-surface uniformity is what I notice. It appears to be doing all the right things, but you can't feel the writer.

    It is like a rollercoaster that doesn't have any jerk or jounce.

    wiml 14 hours

    And reading my own comment it has the same kinds of problems (lookit all those 3-example lists!). I wouldn't hire me for an editing job.

    jameshart 13 hours

    Possibly an inevitability, since LLM text is specifically generated to be low entropy. It’s smooth, optimized for minimal perplexity.

    And if you don’t find any of the word choices a little bit perplexing, your brain can just gloss over it. There is no meaning here. It’s like smalltalk.

    dofm 12 hours

    Interesting — do you happen to have any suggestions for something I could read about this?

    It really bugs me, this aspect of LLMs, and yet I find myself sounding like a lunatic when I describe it, until others chime in and say they have the same experience.

  • purpleflame1257 18 hours

    There's a real hole here at Q3. A critical breakpoint here is sub 16-GB cards, which covers the 5080, 5070 Ti, 5060ti, and several other cards from this generation and the last. It would be instructive to see where the quality knee is.

    dofm 17 hours

    There is an interesting new dynamic 3 bit quantisation I have been meaning to test:

    https://huggingface.co/ISTA-DASLab/Qwen3.8-27B-GSQ-RCO-GGUF

    Luke of Luke’s Dev Lab on YouTube had a look at it. It seems to outperform the typical 3-bit quantisation but whether it outperforms the new Unsloth dynamic I don’t know.

    selectodude 16 hours

    I have a 5080, three OpenAI Pro token resets, and I’m on paternity leave. Astra seems pretty clever. Maybe I’ll give it a task.

    jadbox 18 hours

    Q3 XL and Q3 XS are the two I'm trying to decide on

    dofm 17 hours

    You might want to test this new dynamic GGUF:

    https://huggingface.co/ISTA-DASLab/Qwen3.8-27B-GSQ-RCO-GGUF

    (I don’t know much about it, just saw a YouTube video about it last night)

    kennywinker 16 hours

    Another one to try:

    https://huggingface.co/Jackrong/Qwopus3.8-27B-Flash-GGUF

    Runs the 3bit model faster than the 2bit one runs on my old-ass card. Can’t vouch for its intelligence yet, but i suspect whatever loss in smarts it takes is made up for by the extra resolution.

    civvv 17 hours

    Running Q3 on my AMD RX 9070XT. 32k context and 32/TPS. Apart from the context window preventing it from doing any large tasks, this thing is seriously powerful. I could probably push it to 64k context. Local open models are the future, and I am definitely getting a more powerful card. Very fun!

    slim 17 hours

    Running Q3 on 5060ti with 64k context. It runs great

    zenoprax 7 hours

    9070XT operator here: I'm using llama.cpp with the same model and quant and I'm getting 87,000 for my context limit. I tried the Unsloth models but they lowered it to around 30-40K so I went back to upstream.

    I'm on Linux and using some sort of unholy mess of ROCM libraries that I don't understand.

    brynx97 14 hours

    Could you comment more on how you set this up? I have a mostly idle 9070XT I use for gaming, and I was considering using it with the newer local open models. Many thanks.

    civvv 14 hours

    I got Qwen3.8-27B running on my RX 9070 XT by setting up AMD’s ROCm 7.14/TheRock runtime for gfx1201 and adding the required HIP/LLVM paths to Windows. The official llama.cpp ROCm build detected the card correctly, but kept crashing with 0xC0000005 while loading the model, so I switched to the Windows Vulkan build of llama.cpp instead, which worked reliably.

    I’m running Qwen3.8-27B-Unleashed UD-Q3_K_XL, which is a ~12.3 GiB Q3 quant, fully offloaded to the 16 GB 9070 XT. I disabled the vision projector to save VRAM and use one inference slot, Flash Attention, Q4 KV cache, --fit off, and --ctx-checkpoints 0. I’m running it with a 64K context window. The AMD driver also needs to be recent enough for ROCm 7.14; I targeted Adrenalin 26.6.4 or newer.

    Forgeties79 16 hours

    What are you offloading to ram (or even CPU)? I’m using a 9080 (not XT) and having trouble with context/token rates

    civvv 14 hours

    I’m running Qwen3.8-27B-Unleashed UD-Q3_K_XL, which is a ~12.3 GiB Q3 quant, fully offloaded to the 16 GB 9070 XT. I disabled the vision projector to save VRAM and use one inference slot, Flash Attention, Q4 KV cache, --fit off, and --ctx-checkpoints 0. I’m running it with a 64K context window. The AMD driver also needs to be recent enough for ROCm 7.14; I targeted Adrenalin 26.6.4 or newer.

    7speter 13 hours

    You can offload the vision projector to CPU/sysRAM

    slim 10 hours

    Awesome. How would you setup that ?

    skirmish 9 hours

      --no-mmproj-offload
    
    See the documentation: https://github.com/ggml-org/llama.cpp/blob/master/docs/multi...

  • spider-mario 18 hours

    > Second, besides noise (bars are Wilson 95% confidence intervals, very conservative for run-to-run noise), there is little difference down to 4-bit; only the 2-bit scores a bit lower.

    Confidence intervals have nothing to do with run-to-run variation. They have little to do with anything people usually ascribe to them (https://link.springer.com/article/10.3758/s13423-015-0947-8 ), but even less with run-to-run variation (https://link.springer.com/article/10.1007/s10654-016-0149-3 misconception 22).

    soltanov 1 hours

    Task success is not enough; reliability and cost matter.

    maCDzP 16 hours

    Thank you for these, coz I learned a lot! Great that they are open access.

    mitxela 7 hours

    > The key confusion underlying the FCF is the confusion of what is known before observing the data — that the CI, whatever it will be, has a fixed chance of containing the true value — with what is known after observing the data. Frequentist CI theory says nothing at all about the probability that a particular, observed confidence interval contains the true value; it is either 0 (if the interval does not contain the parameter) or 1 (if the interval does contain the true value).

    They're really reaching here. There's a 95% chance it's 1 and 5% it's 0, and we don't know which, so it's 0.95. Like saying the probability your uncle died of a shark attack is either 0 or 1. But in reality I don't know anything about your uncle so it's the average probability that someone picked randomly died of a shark attack, until I know it about your uncle.

    spider-mario 2 hours

    It’s not reaching. See my response here: https://news.ycombinator.com/item?id=49622516

    > Like saying the probability your uncle died of a shark attack is either 0 or 1.

    For a frequentist, it is. If you want the Bayesian interpretation of probability, you must calculate the probability that the interval you ended up getting contains the true value, and you can easily end up with a value different from 95%. You can’t just stop at “it was drawn from a pool of intervals of which 95% contain the true value” since you have more information than that (the numerical bounds).

    fr2029 17 hours

    the 2nd derivate of shannon covariance of noise begs to differ

    17 hours

    jnwatson 18 hours

    Mind blown. The more I read about statistics, the less I know.

    exogenousdata 17 hours

    “There are three kinds of lies: Lies, damned lies and statistics.” - Mark Twain (attributed but unsubstantiated to Benjamin Disraeli)

    stared 16 hours

    Point taken, but there is a much more fundamental issue with it - and precisely why I wrote "very conservative".

    It is a different problem if we pick two sets from the same data distribution, A and B, and first we have a score on A, then on B. Here we re-run on precisely the same set of Terminal Bench 2.1 problems. It may be that results are so random between runs that each single task has the same probability in a Bernoulli distribution. But more likely, many problems are easy (i.e. each run will solve them consistently), many are too hard (i.e. no run is going to solve them) and only a fraction is somehow in between.

    Maybe there is some good trick to find a proper distribution, but to my knowledge, we would need to run it at least two times on TB2.1 to get any more educated estimates. That said, I am open to new ideas.

    That said, I consider frequentist probability a dirty trick, and that Bayesian is the proper way of doing things (vide David J.C. MacKay" Information Theory, Inference, and Learning Algorithms" and Cam Davidson-Pilon "Probabilistic Programming & Bayesian Methods for Hackers" https://www.inference.org.uk/itprnn/book.pdf, https://dataorigami.net/Probabilistic-Programming-and-Bayesi...).

    breezybottom 9 hours

    Both ways involve sophistry. If you don't like dirty tricks, statistics isn't for you.

    tomrod 13 hours

    I'm working on a practical review implementation on this! Great to hear others are thinking along the same way.

    ricardobeat 14 hours

    The main problem here is that a model that wildly fluctuates with 60% - 100% - 80% results will have the same wilson score as one that repeatedly scores 80% - 80% - 80%. So the 'confidence interval' bar is meaningless.

    I'm not that well versed in statistics, but a standard box plot is probably the best alternative

    stared 13 hours

    A single result is binary. All we get from a run is which tasks were solved, which weren’t.

    diseasedyak 15 hours

    Yah, prediction interval instead, right? (I'm still learning statistics)

    Saying there's a confidence interval for run-to-run makes no sense, from the way I understand it, because each run could have a result that's all over the place.

    spider-mario 15 hours

    Yes. It’s maybe easier to reason about by imagining that we are trying to estimate the parameter of a Gaussian distribution.

    Let’s say that the “true” distribution of the data has mean μ=100 and standard deviation σ=15, but we don’t know that.

    95% confidence interval for μ = “if we repeatedly draw N samples from the true distribution and compute a confidence interval every time, 95% of those intervals will contain μ.” That’s all that the definition of a confidence interval guarantees. It does not follow that if we take one of those intervals, it, specifically, has a 95% chance of containing μ. For a frequentist, that’s a meaningless statement (both the interval and μ are fixed so there’s no frequentist probability about it); for a Bayesian, there is no guarantee that that probability is 95%. 95% is instead the probability of “sampling data that will happen to generate an interval that contains μ”.

    95% Bayesian credible interval for μ = interval that can be interpreted as having a 95% probability of containing μ, generally obtained by computing the posterior probability density distribution for μ and finding an interval that encompasses 95% of the probability mass. Conventions include highest-density intervals (HDIs), which are obtained by making sure that the PDF is equal at both bounds, and equal-tailed intervals (equal probability mass before and after the interval). With enough samples, it may become arbitrarily narrow (“we are very sure of the mean”), despite the standard deviation of 15 that is built into the “true” distribution that we are estimating, and a Jeffreys prior will happen to make it satisfy the definition of a confidence interval as well (https://sami.boo/jaynes/confidence-intervals-vs-bayesian-int... ).

    Posterior predictive distribution = taking into account the uncertainty on both μ and σ, distribution of samples that would be obtained by sampling from N(μ, σ) (which, because of that uncertainty, is a https://en.wikipedia.org/wiki/Compound_probability_distribut... but may have a convenient closed form https://en.wikipedia.org/wiki/Conjugate_prior#Table_of_conju... ), from which we can likewise extract a 95% interval.

    Y_Shalev 2 hours

    [flagged]

    jmalicki 9 hours

    > a Jeffreys prior will happen to make it satisfy the definition of a confidence interval as well

    Correct, which is why it's crazy to consider a Jeffrey's credible interval as valid, but not a confidence interval.

    Perhaps the confidence interval might not be valid under a frequentist interpretation, but the same math can be valid under a Bayesian interpretation even if the person publishing didn't mean it that way.

    Does that mean it's valid? Well, the confidence interval is as equally valid as a lot of credible intervals, which is why the credible interval is not some magical better alternative - it's mostly just a choice of how you interpret it, it is not a different procedure that produces different numbers.

    spider-mario 2 hours

    > Correct, which is why it's crazy to consider a Jeffrey's credible interval as valid, but not a confidence interval.

    The confidence interval is “valid” for what its definition is. But:

    - saying “there is a 95% chance that this interval contains the true value because it’s a 95% credible interval” is valid;

    - saying “there is a 95% chance that this interval contains the true value because it’s a 95% confidence interval” is not.

    It’s very much possible to reach a correct conclusion with invalid reasoning. As Jaynes put it:

    “As we stress repeatedly, from a false proposition – or from a fallacious argument that leads to a false proposition – all propositions, true and false, may be deduced. But this is just the danger; if fallacious reasoning always led to absurd conclusions, it would be found out at once and corrected. But once an easy, shortcut mode of reasoning has led to a few correct results, almost everybody accepts it; those who try to warn against it are not listened to.”

    > Perhaps the confidence interval might not be valid under a frequentist interpretation, but the same math can be valid under a Bayesian interpretation even if the person publishing didn't mean it that way.

    Right, but if you get that by happenstance and not from the fact that it’s a confidence interval, the latter isn’t really getting you anything.

    Per my first link: “One of the misconceptions regarding the relationship between Bayesian inference and frequentist inference is that they will lead to the same inferences, and hence all confidence intervals can simply be interpreted in a Bayesian way. In the case where data are normally distributed, for instance, there is a particular prior that will lead to a confidence interval that is numerically identical to Bayesian credible intervals computed using the Bayesian posterior (Jeffreys 1961; Lindley 1965). This might lead one to suspect that it does not matter whether one uses confidence procedures or Bayesian procedures. We showed, however, that confidence intervals and credible intervals can disagree markedly. The only way to know that a confidence interval is numerically identical to some credible interval is to prove it. The correspondence cannot — and should not — be assumed. More broadly, the defense of confidence procedures by noting that, in some restricted cases, they numerically correspond to Bayesian procedures is actually no defense at all. One must first choose which confidence procedure, of many, to use; if one is committed to the procedure that allows a Bayesian interpretation, then one’s time is much better spent simply applying Bayesian theory. If the benefits of Bayesian theory are desired — and they clearly are, by proponents of confidence intervals — then there is no reason why Bayesian inference should not be applied in its full generality, rather than using the occasional correspondence with credible intervals as a hand-waving defense of confidence intervals.”

    > which is why the credible interval is not some magical better alternative - it's mostly just a choice of how you interpret it

    You don’t get to choose to interpret a confidence interval as if it had the meaning of a Bayesian one. If you want to be able to interpret a computed interval as “there is a 95% chance that this interval contains the true parameter value”, only the Bayesian procedure guarantees it, and it can very well produce different numbers. So it is a better alternative in that sense.

    Dylan16807 3 hours

    If 95% of the intervals in your set of intervals include μ, and you randomly pick one of them, in what way is that interval not 95% likely to contain μ? Ignoring the frequentist pedantry that "likelyhood is the wrong word", is there a way for a different number to be the correct number?

    spider-mario 2 hours

    https://link.springer.com/article/10.3758/s13423-015-0947-8#...

    https://sami.boo/jaynes/confidence-intervals-vs-bayesian-int... (+ Cauchy example below)

    It’s like with test accuracy. Test accuracy is the pre-test probability that the test will give a correct result. But once you have a positive or negative result, which way it turned out plays a part in computing the predictive value. Likewise, once you have computed the interval, the specific bounds you ended up getting can affect the plausibility that they contain the true value.

    Dylan16807 2 hours

    Your first link is just the pedantry. The second link... I don't see any issue for the question I asked? The confidence interval is supposed to be wrong a certain percent of the time. It being so wrong it disproves itself is funny but the 90% is still 90% isn't it? They just landed in a particularly harsh part of the 10%.

    The conclusion they come to is "it is possible to do better in the individual case by taking into account evidence from the sample that the confidence interval method throws away". That means the confidence interval is inefficient, not incorrect.

    spider-mario 2 hours

    If you just meant it in the sense that “if I pick one interval at random and don’t look at it, it will (future) have an n% chance of containing the true parameter” then sure. It’s a pre-data statement (“I have an n% chance of sampling data that will happen to generate an interval that contains the parameter”).

    But once you have picked one, and you know its bounds (say, [12.1471, 13.8264]), then it’s fallacious to make the post-data reasoning that “because it was picked at random from the set of 90% confidence intervals, it has a 90% chance of containing the true parameter”.

    Again, it’s like with medical tests. If a test has 90% sensitivity and 90% specificity, it has 90% accuracy (it will, in 90% of cases, produce a result that matches disease status) – a pre-data statement on the test result (/ on the confidence interval that we will compute). But it does not follow that, if you screen an asymptomatic patient with low prior probability of disease and get a positive result, they have a 90% chance of having the disease – a post-data statement on disease status, given the test result (/ on where the parameter lies, given the interval).

    > The conclusion they come to is "it is possible to do better in the individual case by taking into account evidence from the sample that the confidence interval method throws away". That means the confidence interval is inefficient, not incorrect.

    It means you know in the individual case that the specific confidence interval does not in fact have a 90% chance of containing the parameter.

    Dylan16807 45 minutes

    I can see the analogy here but a test like that being binary throws things off and that's also super asymmetrical error. Weren't we sampling a gaussian?