| ▲ | $500 GPU outperforms Claude Sonnet on coding benchmarks(github.com) |
| 186 points by yogthos 14 hours ago | 67 comments |
| |
|
| ▲ | bloppe 9 minutes ago | parent | next [-] |
| Generating big chunks of code is rarely what I want from an agent. They really shine for stuff like combing through logs or scanning dozens of source files to explain a test failure. Which benchmark covers that? I want the debugging benchmark that tests mastery of build systems, CLIs, etc. |
|
| ▲ | mmaunder 6 hours ago | parent | prev | next [-] |
| I’d encourage devs to use MiniMax, Kimi, etc for real world tasks that require intelligence. The down sides emerge pretty fast: much higher reasoning token use, slower outputs, and degradation that is palpable. Sadly, you do get what you pay for right now. However that doesn’t prevent you from saving tons through smart model routing, being smart about reasoning budgets, and using max output tokens wisely. And optimize your apps and prompts to reduce output tokens. |
| |
| ▲ | thefourthchime 4 hours ago | parent | next [-] | | I won’t use anything less than the SOTA. It tried using Opus 4.6 medium and immediately regretted it. High messes up enough. | | |
| ▲ | rf15 an hour ago | parent | next [-] | | You cannot afford the SOTA. | | |
| ▲ | weird-eye-issue an hour ago | parent [-] | | Why is that? The $200 per month subscription comes with a ton of usage. Opus 4.6 is available on the $20 plan too | | |
| ▲ | komali2 17 minutes ago | parent [-] | | I'm starting to think in these conversations we're all often talking about two different things. You're talking about running an LLM service through its provided tooling (codex, Claude, cursor), others seem to be talking token costs because they're integrating LLMs into software or are using harness systems like opencode, pi, or openclaw and balancing tasks across models. | | |
| ▲ | weird-eye-issue a minute ago | parent [-] | | Fair enough, I read it quickly and assumed the person they replied to was talking about Claude Code |
|
|
| |
| ▲ | overfeed an hour ago | parent | prev [-] | | What were you using 6 months ago? | | |
| ▲ | withinboredom an hour ago | parent [-] | | Opus 4.5 ~= Opus 4.6 high. Opus 4.5 was nerfed just before or after the release of 4.6. |
|
| |
| ▲ | XCSme 6 hours ago | parent | prev | next [-] | | Yup, they do quite poorly on random non-coding tasks: https://aibenchy.com/compare/minimax-minimax-m2-7-medium/moo... | | |
| ▲ | usagisushi 3 hours ago | parent | next [-] | | Interesting benchmark. It is notable that Gemini-3-Flash outperforms 3.1 Pro. My experience using Flash via Opencode over the past month suggests it is quite underrated. Needless to say, benchmarks are limited and impressions vary widely by problem domain, harness, written language, and personal preference (simplicity vs detail, tone, etc.). If personal experience is the only true measure, as with wine, solving this discovery gap is an interesting challenge (LLM sommelier!), even if model evolution eventually makes the choice trivial. (I prefer Gemini 3 for its wide knowledge, Sonnet 4.6 for balance, and GLM-5 for simplicity.) | |
| ▲ | wizee 4 hours ago | parent | prev [-] | | It’s worth also comparing Qwen 3.5, it’s a very strong model. Different benchmarks give different results, but in general Qwen 3.5, GLM 5, and Kimi K2.5 are all excellent models, and not too far from current SOTA models in capability/intelligence. In my own non-coding tests, they were better than Gemini 3.1 flash. They’re comparable to the best American models from 6 months ago. | | |
| ▲ | XCSme 3 hours ago | parent [-] | | I used qwen 3.5 plus in production, it was really good at instruction following and tool calling. |
|
| |
| ▲ | m00x an hour ago | parent | prev | next [-] | | Minimax 2.7 is fine for most web stuff. It's slightly worse than Claude at backend, but works great for frontend. They're all slop when the complexity is higher than a mid-tech intermediate engineer though. | | |
| ▲ | dvt an hour ago | parent [-] | | > They're all slop when the complexity is higher than a mid-tech intermediate engineer though. This right here. Value prop quickly goes out the window when you're building anything novel or hard. I feel that I'm still spending the same amount of time working on stuff, except that now I'm also spending money on models. |
| |
| ▲ | mkw2000 2 hours ago | parent | prev | next [-] | | i find kimi to be very very good, minimax not so much | |
| ▲ | paulddraper 2 hours ago | parent | prev [-] | | Agreed. They are equivalent of frontier models 8+ months ago. |
|
|
| ▲ | selcuka 6 hours ago | parent | prev | next [-] |
| It's a race to the bottom. DeepSeek beats all others (single-shot), and it is ~50% cheaper than the cost of local electricity only. > DeepSeek V3.2 Reasoning 86.2% ~$0.002 API, single-shot > ATLAS V3 (pass@1-v(k=3)) 74.6% ~$0.004 Local electricity only, best-of-3 + repair pipeline |
| |
| ▲ | sourcecodeplz 3 hours ago | parent | next [-] | | I've tested many open models, Deepseek 3.2 is the only SOTA similar. | |
| ▲ | yogthos 5 hours ago | parent | prev | next [-] | | You could use this approach with DeepSeek as well. The innovation here is that you can generate a bunch of solutions, use a small model to pick promising candidates and then test them. Then you feed errors back to the generator model and iterate. In a way, it's sort of like a genetic algorithm that converges on a solution. | | |
| ▲ | hu3 4 hours ago | parent [-] | | Indeed but: 1) That is relatively very slow. 2) Can also be done, simpler even, with SoTA models over API. | | |
| ▲ | yogthos 4 hours ago | parent [-] | | Right, this works with any models. To me, the most interesting part is that you can use a smaller model that you could run locally to get results comparable to SoTA models. Ultimately, I'd far prefer running local, even if slower, for the simple reason of having sovereignty over my data. Being reliant on a service means you have to share whatever you're working on with the service, and the service provider decides what you can do, and make changes to their terms of service on a whim. If locally running models can get to the point where they can be used as a daily driver, that solves the problem. |
|
| |
| ▲ | mikestorrent 6 hours ago | parent | prev [-] | | > cheaper than the cost of local electricity only. Can you explain what that means? | | |
| ▲ | simonw 6 hours ago | parent | next [-] | | I think they mean that the DeepSeek API charges are less than it would cost for the electricity to run a local model. Local model enthusiasts often assume that running locally is more energy efficient than running in a data center, but fail to take the economies of scale into account. | | |
| ▲ | littlestymaar 4 hours ago | parent | next [-] | | I guess it mostly comes from using the model with batch-size = 1 locally, vs high batch size in a DC, since GPU consumption don't grow that much with batch size. Note that while a local chatbot user will mostly be using batch-size = 1, it's not going to be true if they are running an agentic framework, so the gap is going to narrow or even reverse. | |
| ▲ | jacquesm 4 hours ago | parent | prev | next [-] | | Some of those local model enthusiasts can actually afford solar panels. | | |
| ▲ | jLaForest 3 hours ago | parent [-] | | You are still incurring a cost if you use the electricity instead of selling it back to the grid | | |
| ▲ | Kodiack 3 hours ago | parent | next [-] | | The extent of that heavily depends on where you are. Where I live in NZ, the grid export rates are very low while the import rates are very high. Our peak import rate is 3x higher than our solar export rate. In other words, we’d need to sell 3 kWh hours of energy to offset the cost of using 1 kWh at peak. We’re currently in the process of accepting a quote for home batteries. The rates here highly incentivise maximising self-use. | |
| ▲ | dmichulke 2 hours ago | parent | prev [-] | | Luxembourg: Purchase price = 2 x sales price, mostly due to grid costs. And this is with no income tax or VAT on sold electricity. |
|
| |
| ▲ | croes 2 hours ago | parent | prev [-] | | Local enthusiasts don’t have to fear account banning. |
| |
| ▲ | atoav 5 hours ago | parent | prev | next [-] | | It means that the electricity you would have to pay if you did the computations yourself would be more expensive than paying them to do it. Part of thst has to do with the fact that China has cheap electricity, also due to their massive push into renewables. Part of that is just economies of scale. A big server farm can run more efficiently than your PC on average. | | |
| ▲ | AuthAuth 3 hours ago | parent [-] | | cheap electric due to their massive push on non renewables. There has been no change in the price of electricity during the renewable shift. |
| |
| ▲ | jojobas 6 hours ago | parent | prev [-] | | China has cheap electricity. | | |
| ▲ | ericd 6 hours ago | parent [-] | | Well, also, LLM servers get much more efficient with request queue depth >1 - tokens per second per gpu are massively higher with 100 concurrents than 1 on eg vllm. |
|
|
|
|
| ▲ | memothon 10 hours ago | parent | prev | next [-] |
| I'm always skeptical because you can make it pass the benchmarks, then you use it and it is not practically useful unlike an extremely general model. Cool work though, really excited for the potential of slimming down models. |
| |
| ▲ | kimixa 4 hours ago | parent | next [-] | | I find it's often very language and sector dependent. I still see a massive difference in systems programming (normally c++ and rust) between any open model I've tried and something like sonnet 4.5 (not really tried 4.6). And honestly, even the big models (like Opus 4.6) struggle in many cases. Perhaps these things aren't well represented in the training data for these open models? Every local model I've tried (minimax2.5, GLM-4.7, Quen3, 3.5 and -coder variants) spend so much time trying to get something syntactically sensible and accepted by the compiler that when they've finished they barely seem to have any "momentum" left to actually solve the problems, as pretty much anything but the most trivial change ends up in another loop of actually trying to get it working again, often losing the intent of that change in the process. My fear is that the solution here, having multiple instances all making the same changes for later comparison, would spend a huge amount of time beating it's head against compiler errors, types, memory allocation (NO DON'T JUST SPRINKLE IN A FEW MORE RAW "new" KEYWORDS DAMMIT) before it even gets to the "logic". Having plenty of local GPU power I'd love to be able to actually use that, and I'm already wary about some of the training data use and it's interactions with the license of the code I'm "sending" to the cloud models... | |
| ▲ | yogthos 9 hours ago | parent | prev [-] | | You obviously have to try it out to see how it works for you, but the trick they use is pretty clever. When you ask an AI to write code, it doesn’t always get it right. Sometimes the code has bugs, sometimes it misunderstands the problem entirely. A naive way to address that is to generate a few solutions and test each one. The odds that at least one works go way up. ATLAS generates multiple attempts, running each through a test suite. Each retry also gets told what went wrong with the previous attempt, so it can try to avoid the same mistake. But this can be pretty slow since you have to run the code in an isolated environment, check the outputs, wait for it to finish. Doing that for every candidate quickly adds up. So ATLAS has another shortcut for avoiding unnecessary testing. Instead of simply generating solutions and testing all of them, it tries to predict which one is most likely correct before running any tests. ATLAS also asks the model for an embedding of what it just wrote which acts as a fingerprint. Two similar pieces of code will produce similar fingerprints. A well-written, confident solution will produce a different fingerprint than a confused, buggy one. These fingerprints get fed into a separate, much smaller neural network called the Cost Field. This little network was trained ahead of time on examples where they already knew which solutions were correct and which were wrong. It learned to assign a score to each fingerprint. Correct solutions get a low score and incorrect ones get a high one. So the process is to generate multiple solutions, get their fingerprints, score each one, and pick the lowest. Only that one gets tested. The Cost Field picks correctly about 88% of the time according to the repo. | | |
| ▲ | zar1048576 8 hours ago | parent [-] | | Really intriguing set of techniques to improve accuracy by generating multiple solutions. Even with the work to predict the most likely solutions, it's not clear to me based on the description how this could all be done efficiently. Would definitely be really impressive if it pans out on real-world use cases. Will look to kick the tires on this if I can get some time. | | |
| ▲ | yogthos 8 hours ago | parent [-] | | Seems like the key insight is to train a small model that acts as a heuristic for embeddings that resemble quality code. I imagine a lot depends on how well this model is trained. And you could probably create specialized versions for different languages and domains. Another interesting approach could be to use this set up with a language like Clojure or Common Lisp which facilitates interactive development. If you could hook up the agent directly to a REPL in a running program, then it could run tests with a lot less overhead. | | |
| ▲ | xyzzy123 6 hours ago | parent [-] | | I'm super confused. The small model "cost field" `rag-api/geometric_lens/cost_field.py` was trained on PASS_TASKS like "Write a function that counts vowels in a string." and FAIL_TASKS like "Write a function that converts a regular expression string to an NFA using Thompson's construction, then converts the NFA to a DFA.". So it seems like it's a difficulty classifier for task descriptions written in English. This is then used to score embeddings of Python code, which is a completely different distribution. Presumably it's going to look at a simple solution, figure out it lands kinda close to simple problems in embedding space and pass it. But none of this helps you solve harder problems, or distinguish between a simple solution which is wrong, and a more complex solution which is correct. | | |
| ▲ | yogthos 5 hours ago | parent [-] | | I think the goal is to have a light heuristic that helps find plausibly useful solutions. They're still going to go through a testing phase as a next step, so this is just a very simple filter to decide what's even worth testing. |
|
|
|
|
|
|
| ▲ | b3ing 3 hours ago | parent | prev | next [-] |
| Will open source or local llms kill the big AI providers eventually? If so when? I can see maybe basic chat, not sure about coding and images yet |
| |
| ▲ | freekh 19 minutes ago | parent | next [-] | | This has been my theory for a while: during this autumn Apple will release a version of Apple Intelligence that runs locally and works better than ChatGPT. They will do this because 1) they do not have an offering in AI yet 2) they have amazing hardware that even now almost can pull it off on open models and this will not be possible to replicate on android for a long time (presumably) This will crush OpenAI. Note: I am not talking about coding here - it will take a while longer but when it is optimized to the bone and llms output has stabilized, you will be running that too on local hardware. Cost will come down for Claude and friends too but why pay 5 when you can have it for free? | |
| ▲ | throwaway85825 3 hours ago | parent | prev | next [-] | | Financial gravity will kill them when returns don't match stratospheric expectations. | | |
| ▲ | bluefirebrand 2 hours ago | parent [-] | | I hope so too, but I think it's wishful thinking. Be prepared for the mother of all financial bailouts from the world governments to make sure that doesn't happen | | |
| ▲ | hollerith 2 hours ago | parent [-] | | I can understand why banks got bailed out by the US gov in 2008, but why would a government feel the need to bail out AI labs? I hope you are not going to say, "to avoid a global recession or depression caused by the popping of the AI bubble". That would be unnecessary and harmful (in its second-order effects), and governments do have advisors who are competent enough in economics to advise against such a move. | | |
| ▲ | nyargh an hour ago | parent [-] | | Bold of you to assume competency will overpower politics in our current era. | | |
| ▲ | hollerith 39 minutes ago | parent [-] | | So far, the country I know best, the US, has been competent enough to avoid massive corporate bailouts except the aforementioned banks in 2008 and GM. The bailout of GM was not motivated by a desire to avoid a recession when a bubble pops. If the AI labs become very influential and powerful, Washington might nationalize them, but that would be very different from bailing them out because they have become unprofitable and cannot attract additional investment from the private sector. | | |
| ▲ | nyargh 22 minutes ago | parent [-] | | Despite politics, TARP was arguably an economic success story for the US treasury despite public sentiment. Whether it created moral hazard or not I suppoae is up for debate. GM on the other hand should have been left to die. However, I was obliquely referring to the open transactionality and patronage encouraged by the current administration, and how the AI / big tech players have, with few exceptions, gleefully joined in. Unless they run out of money for bribes, I think it's inevitable that current government will bend over backwards to prop them up. |
|
|
|
|
| |
| ▲ | CJefferson 2 hours ago | parent | prev | next [-] | | They won't for coding and images, but they will socially. Everyone I know who has invested in home AI use is mostly using it for 'things that might get you banned/limited'. | | |
| ▲ | Mashimo an hour ago | parent [-] | | I'm quite impressed what is possible with just 12 to 16 GB of vram in terms of image generation. |
| |
| ▲ | qingcharles 2 hours ago | parent | prev [-] | | Unless there are some really, really major shortcuts found in inference, then it's always going to be hard to run a really great model locally. The costs of the PC + electric will usually be crazy compared to a $20/mo Claude sub. |
|
|
| ▲ | emp17344 5 hours ago | parent | prev | next [-] |
| Yet more evidence that the harness matters more than the model. |
|
| ▲ | electroglyph 2 hours ago | parent | prev | next [-] |
| what's with the weird "Geometric Lens routing" ?? sounds like a made up GPTism |
|
| ▲ | 0xbadcafebee 4 hours ago | parent | prev | next [-] |
| This is specifically an experiment using ablation and multiple passes to improve the end result. Other techniques have been found that do this (like multiple passes through the same layers). But this technique - for this one specific model - seems to be both more performant, but also takes much longer, and requires more complexity. It's unlikely most people would use this technique, but it's interesting. |
|
| ▲ | riidom 7 hours ago | parent | prev | next [-] |
| Not a word about the tok/sec, unfortunately. |
| |
| ▲ | arjie 6 hours ago | parent | next [-] | | It won’t be meaningful considering the architecture: it’s a harness around the model that generated multiple solutions in multiple passes using the test to measure compliance and repair broken solutions. The resulting program won’t be streamed to you because it has existed for minutes as it goes through the cycle. It’s more for an asynchronous use-case. I, too, was interested because I am always eager to use local models in my claw-like. It looks like this could be useful for an async portion of the harness but it wouldn’t work in interactive contexts. Very cool ensemble of techniques, particularly because they’re so accessible. I think I will use this form for reusable portions of web browsing functionality in my personal agent. | |
| ▲ | Octoth0rpe 4 hours ago | parent | prev [-] | | > A single patched llama-server runs on K3s, providing both generation with speculative decoding (~100 tok/s) There seems to be at least some detail on that point. |
|
|
| ▲ | negativegate 8 hours ago | parent | prev | next [-] |
| Am I still SOL on AMD (9070 XT) when it comes to this stuff? |
| |
| ▲ | 0xbadcafebee 4 hours ago | parent | next [-] | | No? You can run any model that fits in its VRAM, and you can run larger models with layer/MoE offloading. Ask an AI what the best models you can run on that card are, then ask it for newer models than that. Ask what tuning options to pass to llama.cpp, and what the auto-tuning options are. Use ROCm builds. It looks like your card has 16GB VRAM? Start with Qwen 3.5 9B Unsloth GGUFs (UD-Q6_K_XL) and branch out from there. | |
| ▲ | patshead 6 hours ago | parent | prev | next [-] | | No, but yes? OmniCoder 9B at Q6 fits on my 9070 XT with 200k+ tokens of context, and it works pretty well with OpenCode. It is for sure the best local model that I've managed to squeeze onto my GPU, and it even works at 120k context at Q3 on an 8GB RX 580 GPU. I can't imagine trying to using this model on either GPU for real work. I can use much bigger and faster models on the $3 Chutes subscription or $10 OpenCode Go subscription. Even so, I am still excited. I don't feel like there was even a model worth using with a tool like OpenCode 6 to 9 months ago. I like the way things are heading, and I am looking forward to seeing how capable coding models of this size are in another 6 to 9 months! | |
| ▲ | dangus 8 hours ago | parent | prev [-] | | Well, this specific solution was only set up on specific hardware, and is Nvidia dependent, as the readme stares. That doesn’t mean the 9070XT can’t do AI stuff, quite the opposite. ROCm gets better all the time. There are many AI workloads you can do on AMD cards. Is it a card I would choose if I was primarily working on AI? Absolutely not. But it is the card I own and it’s been a great value for gaming. | | |
| ▲ | dannyw 6 hours ago | parent [-] | | Unfortunately AMD is much worse with supporting AI features like FSR4 on older hardware generations, despite the capability and leaked INT8 models being there. Totally unlike NVIDIA. It’s absurd I have to use open source programs to get INT8 FSR4 support. |
|
|
|
| ▲ | limoce 6 hours ago | parent | prev | next [-] |
| The title should be "Adaptive Test-time Learning and Autonomous Specialization". |
|
| ▲ | superkuh 6 hours ago | parent | prev | next [-] |
| If anyone else was hoping this was using Q8 internally and that converted to Q4 it could fit in 12GB VRAM: unfortunately it's already at Q4_K_M (~9GB) and the the 16GB requirement is from other parts not a 14B@8bit+kv cache/etc you might guess. |
|
| ▲ | felixagentai 5 hours ago | parent | prev [-] |
| [flagged] |
| |