37 comments

  • diimdeep1 minute ago
    [delayed]
  • rbbydotdev4 hours ago
    Looks like we are seeing small but mighty model breakthroughs, outpacing the pure capital firepower of SOTA providers. I love rooting for the little guy, but is it too soon to call it? To play devils advocate, could it just be the benchmarks are not efficient enough to capture success of real developer workflows?
    • bakies2 hours ago
      I've just started using qwen3.6:35b a couple days ago running on my framework desktop and rather impressed. It runs really well and reminds me of probably the first Claude model I used. It's the first local model that's actually working for me in a coding agent I've tried. Very exciting!
      • tarruda7 minutes ago
        If your framework desktop is the 128G Strix Halo, I recommend giving Qwen 3.5 122B-A10B a shot.<p>This Q5_K_M quant should be near lossless and fit with full 256K context in about 100GB of RAM: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;AesSedai&#x2F;Qwen3.5-122B-A10B-GGUF" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;AesSedai&#x2F;Qwen3.5-122B-A10B-GGUF</a>
      • smcleod2 hours ago
        Try 27b, it&#x27;s significantly smarter than 35b-a3b (although it is slower, it&#x27;s not so bad with MTP).
        • bakies27 minutes ago
          Hmm, I just assumed bigger was better. How&#x27;s it different?
          • Lalabadie23 minutes ago
            Off the top of my head since it seems to be the quick info you&#x27;re looking for: IIRC, with these two, the 27B is a dense model, meaning it&#x27;s all active at inference. Meanwhile, the 35B is a Mixture of Experts (MoE), so only part of its network (3B?) is active at any time.
            • bakies14 minutes ago
              Thanks! Dense models have been slow on my compute, but I&#x27;ll give it a try. If its not toooooo slow then it&#x27;s fine I mostly fire and forget agents anyway.
        • ignoramous2 hours ago
          At least according to gertlabs, <i>Qwen3.6 27B</i> outperforms every SoTA (closed) model at Kotlin: <a href="https:&#x2F;&#x2F;archive.vn&#x2F;RYBCL" rel="nofollow">https:&#x2F;&#x2F;archive.vn&#x2F;RYBCL</a> &#x2F; <a href="https:&#x2F;&#x2F;gertlabs.com&#x2F;rankings?mode=agentic_coding&amp;language=kotlin" rel="nofollow">https:&#x2F;&#x2F;gertlabs.com&#x2F;rankings?mode=agentic_coding&amp;language=k...</a>
          • iosjunkie1 hour ago
            Interesting. I wonder if there is opportunity to train a set of small model variants to excel at a certain stacks. Eg Qwen3.6-27B for Node + React or Qwen3.6-27B for Rust + TUI
      • diseasedyak1 hour ago
        I&#x27;m running qwen36.:35b:iq4 IQ4_XS quant. Takes 18 GB of RAM with 131k context window. Seems to be really good. Have it running local stuff via Hermes, using a cloud model via Ollama (Deepseek V4-Pro) for heavy lifting.
      • andy992 hours ago
        Could you please share which coding agent you are using with it?
        • bakies26 minutes ago
          I settled on opencode after trying goose and aider as well. I&#x27;ll probably try some more but opencode worked similar to Claude code which is my main agent.<p>I serve the model with ollama and am thinking about replacing it but haven&#x27;t looked into it.<p>I have openwebui for chat if I want that too, but don&#x27;t really use it.
        • waezel1 hour ago
          Crush: <a href="https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;crush&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;crush&#x2F;</a><p>The Q8_K_XL MTP model from Unsloth: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.6-35B-A3B-MTP-GGUF" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;unsloth&#x2F;Qwen3.6-35B-A3B-MTP-GGUF</a>
        • oneshtein1 hour ago
          npx @oh-my-pi&#x2F;pi-coding-agent
        • npodbielski1 hour ago
          I am using Mistral Vibe.
        • NamlchakKhandro1 hour ago
          Pi
    • j452 hours ago
      It feels sometimes like optimizations are only starting.
      • trollbridge1 hour ago
        I’m beginning to suspect the closed SOTA labs were doing all these optimisations, keeping quiet about it, and just charging us out the yinyang for inference.
  • secretslol10 hours ago
    Am I right in thinking this is a tiny model which has been trained well to reason, and that&#x27;s it? Makes me think of a smart person who doesn&#x27;t know anything about a given topic, but with the right tools will go and research the heck out of it. I really like the sound of this... why have models train on learning anything when you can just train them how to learn and let them get on with it from something as small as a Pi Zero and an internet connection.
    • numlock8610 hours ago
      This has been my dream ever since. Instead of encoding &quot;all the knowledge&quot; into those parameters, how about just making a model that has the same size, but all (or rather most) it does is reasoning? Just give it the ability to browse the net (e.g. language specifications, documentation and best practices) and just have it do its thing. Why does my coding agent need to know the population of New York, know a cheese cake recipe or the general lifespan of an ostrich? Just give it the bare minimum knowledge to think and reason about, and let it figure out the rest.<p>Sadly that&#x27;s not how LLMs work, since all they do is &quot;token prediction&quot;. At least the models we have to today ...
      • dandaka6 hours ago
        I think this is a well known concept, which we can&#x27;t deliver yet. LLM&#x2F;transformer give us reasoning engine as a byproduct of its design, but it is quite ineffective. If we can distill reasoning, if reasoning can be achieved without general knowledge, it will be a very effective machine.<p>Some amount of knowledge is required for reasoning. Maybe such model can dynamically knowledge domains to have taxonomy. For example, model can&#x27;t effective reason about development task, if it has no knowledge about development best practices. But population of New York or recipies can definitely be loaded run time with tools.
        • sigmoid105 hours ago
          &gt;Some amount of knowledge is required for reasoning.<p>This is the root of problem. If you think about STEM universities, they don&#x27;t really teach you things you need in the real world. They teach you what you need to know in order to go out there and accumulate the necessary information which can then be used to solve problems. Giving a person access to the internet or a super powerful calculator (like Mathematica) won&#x27;t mean that they can do anything useful. They need tons of experience to use these tools in an effective way. That experience is basically all that implicit adjacent knowledge that we pick up along the way getting our degrees. And LLMs pick that up during pre-training. Drop this part and the outcome will be worthless.
          • dandaka1 hour ago
            Take mathematics as an example. Humanity has found math notation, which allowed to express math rules — distill them to the core. Before math was expressed in prose — a very inefficient way, very similar to current LLMs.<p>In my school, math teacher was giving me prose, which I was converting to math notation. I could argue, that this prose→reasoning conversion is not required at training, and can be obtained at inference time with search tools.
        • XCSme3 hours ago
          Yup, you still need knowledge. Even if you have access to all the data and tools, you still need to know what to search for, what tools to use and to understand what the user is asking.<p>Our computers can already do everything, have access to all the tools and information, yet they still need a human&#x2F;intelligence to use it and apply to specific problems.<p>Even defining the problem requires knowledge.<p>As for the tools, if the model has access to 1000 tools, how would it know which one to use if it doesn&#x27;t have any knowledge itself?<p>What if I ask for &quot;table tennis spin&quot; it had a &quot;magnus effect calculator&quot;, how would it know to make the connection between the two?
          • dandaka1 hour ago
            Model can use tools to get that knowledge. In your example, read Wikipedia page about table tennis. Imagine a reasoning engine with a big enough context, that knows nothing. A path built from first principles to understand &quot;table tennis spin&quot; — does not look very long for me.
            • bmacho28 minutes ago
              It probably can&#x27;t use all the truth in its content window, not yet anyway.<p>E.g. you put a graph in its content window, and you ask it to find a Hamiltonian cycle, can it do it?<p>Probably this could be a next step in the future for more powerful AIs, a layer that abstracts the facts in its content window away, and a layer that solves this types of abstractions.
            • XCSme1 hour ago
              How would it know about Wikipedia and when to use it? From the tool description? If we had 100k such tools, then that wouldn&#x27;t even fit in the context.<p>This is only one example, plus if the topic is more complex, maybe it had to search&#x2F;learn everything (what is table tennis, what is spin, what is a human, what is a ball), etc. So it would be like spawning a baby human, have it spend an (instant) life learning about the world before providing an answer. Maybe this could work in 10 yesrs, if models get stronger with huge context lengths and almost instant data retrieval. Is it the best way to go about things though? Most animals have most of their core abilities embedded in their DNA and &quot;instincts&quot;. A cat doesn&#x27;t have to learn what a bird is in order to hunt it, it&#x27;s already &quot;embedded&quot; in its neural pathways, or even deeper, at a full-body level. Those type of systems are a lot more efficient than the learned ones. Maybe the best future AI, will have everything already embedded, instead of just being a strong reasoning machine. All AI responses should be instant and like &quot;reflexes&quot; instead of reasoned steps.
              • dandaka55 minutes ago
                Imagine you only know how to cook (use fry pan skill) and know how to cook omelette (recipe). You get the task to cook doner kebab. How many Wikipedia pages do you need to read to get a good understanding? I guess its max 5.<p>I think grounding your abstract problem to an example makes it more trivial, than it sounds in general.<p>&gt; How would it know about Wikipedia and when to use it?<p>2 general concepts &quot;You have to get good understanding of subject area before you do actions&quot; + &quot;Wikipedia is a good source of knowledge of subject areas&quot; will get a model there.<p>&gt; spawning a baby human, have it spend an (instant) life learning<p>Humans spend 99% of their life on boring repeating tasks, not learning anything, just navigating on heuristics.
                • XCSme17 minutes ago
                  I&#x27;m just playing devil&#x27;s advocate here.<p>Yes, but still &quot;how to cook&quot; is not atomic. It involves knowing how to move stuff, how to measure, what &quot;cooked&quot; looks like in different environment (i.e. different lighting) or variations in ingredients, how to recover from specific failures (i.e. a good cook can fix accidentally adding too much salt, by counter-balancing with an ingredient that absorbs the extra salt). And this is only one skill.<p>It&#x27;s a bit how deep image neural nets work, where simply detecting shape primitives is not enough, the net is also the connection and relation between those primitives.<p>Even saying, the AI should just have the &quot;cooking&quot; or &quot;coding&quot; skill, trivializes the problem.<p>&gt; Humans spend 99% of their life on boring repeating tasks<p>But we are also non-stop unconciously learning about the world non-stop, from the analgous stream of inputs and seeing the immediate result&#x2F;feedback. Even looking at static picture is like over-training a specific dataset.
      • athrowaway3z8 hours ago
        This is me vibe-splaining something I don&#x27;t know a lot about, but I doubt there is such a thing.<p>If &quot;all the knowledge&quot; is what our models now do, what exactly would be the most extreme &quot;none of the knowledge +search&quot; ?<p>&gt; language specifications.<p>It would load in all the knowledge to figure it what &quot;language&quot; means, then it would continue trying to decode what &quot;specifications&quot; means.<p>That might sound absurd, but to figure out the population of New York It&#x27;s either: Just going to google it, or derive from primary sources.<p>But how is it ever going to interpret the primary sources? It needs to understand the question, how complex a question is, and how complete an answer is and how things relate. Thats just _too_ much language.<p>There might be a way to compact this down into a LLM-native language such that the request of `the population of New York` or `use best practices` is encoded without our messy human language for a reasoning model to work with, but the encoding itself has to be done by the &quot;all the knowledge&quot; llm. Now it seems we just rebuild something related to MoE with extra step afaict.
      • 3eb7988a166310 hours ago
        It would also reduce training costs to nothing. Current methodology requires continual retraining to scoop up new facts. If you can do a one time &quot;this is how to think&quot; - that could conceptually work forever, just plug in a new database layer that can be queried as required.
        • fjsoxjdnwk4 hours ago
          But isn’t that what “training” is anyway? They train LLM today like that and the database becomes the parameters. You can post train on smaller corpus for purpose-built stuff.
      • tomaskafka9 hours ago
        Education had this sad 15 year period where it thought “competences” are all you need.<p>Turns out that without the world knowledge to have a base of facts, it is not.
        • gmac6 hours ago
          Basically: you can&#x27;t teach people to think without giving them some facts and ideas to think with. It&#x27;s like trying to teach woodworking without giving the students any wood.
          • brookst3 hours ago
            “Theoretical tennis”
        • g8oz1 hour ago
          Competences were always supposed to be supported by demonstrable knowledge <i>and</i> skills <i>and</i> behavior.<p>So I don&#x27;t think it&#x27;s true that relevant knowledge was deprioritized. At least it wasn&#x27;t supposed to be.
      • inopinatus2 hours ago
        Any sufficiently general superintelligence will deduce the existence of rice pudding and income tax from Cartesian first principles.
      • dminik7 hours ago
        I mean, this really doesn&#x27;t sound useful even if LLMs worked that way.<p>First, if you know nothing you don&#x27;t even know what you&#x27;re missing or what to search for.<p>Then, without unlimited context, you have to do research for every task all over again every time.
        • regularfry7 hours ago
          &gt; First, if you know nothing you don&#x27;t even know what you&#x27;re missing or what to search for.<p>RAG on the initial prompt would be the first thing to try.<p>&gt; Then, without unlimited context, you have to do research for every task all over again every time.<p>Thing is, we&#x27;re <i>really really good</i> at building very fast search engines. Doing research all over again every time shouldn&#x27;t be a problem.
          • vitro6 hours ago
            Couldn&#x27;t you build some internal knowledge that would stay and you could teach a model this way. A very fast local memory of some sort. You could also specialize model this way so it is very skilled in your domain. The more you use it, the smarter it gets. I guess the problem is for the model to decide whether the information stored in memory is sufficient or not.
            • regularfry5 hours ago
              You could, but it&#x27;s driving in the wrong direction to try to build that knowledge into the model weights because you&#x27;ll <i>always</i> run into a capacity limit sooner with a small model than with a larger one. The thing the model is specialised for is linguistic understanding and the reasoning process itself, and you max that out at the expense of domain-specific knowledge. If you take &quot;as few weights as possible&quot; as a given, I think the interesting question is how small you can make the model with externalised memory. The openclaw and hermes people are all over this sort of memory problem: using the local filesystem or a local database of some sort is exactly a &quot;very fast local memory&quot; where the more you use it, the more knowledge it gathers. Whether that translates to it being &quot;smarter&quot; is a deeper question than it looks.
        • scotty797 hours ago
          The model they built knows a fair bit apparently. You can&#x27;t get 94.3 on AIME26 knowing nothing.
      • LoganDark5 hours ago
        Reasoning alone can’t always predict all the bits of knowledge you’d need to sufficiently solve a problem, that you would research when planning.
    • Lerc9 hours ago
      I think you could probably train a model to consider boolean logic, modal logic, and mathematics reasonably well, but there is still a pretty big leap between that and thinking about things.<p>Even the most basic questions such as put a ball in a cup and place it on a table upside down then pick up the cup and put it in a box.<p>Requires knowledge of things not mentioned in the question (notably gravity).<p>Strict definition of all terms quickly gets you into a quagmire of complexity. Some base level of knowledge about things is required for you to give it instructions. If it only knows how to reason, it lacks any idea of what to aim to achieve.<p>There is quite a pronounced disconnect between the vast stores of written data that models are trained on and robust consideration of a topic. I do wonder if the path can be directed by the order of training.<p>For example if you train a model to basic literacy using tinystories, then math and philosopy texts, then psychology, and sociology texts, and then finally the mass data of everything from conversations and rants, to code and fiction.<p>Does that end up with a significantly different model to one that is trained on books on acting, creative writing, and fantasy novels, before introducing the same final mass data set.<p>How much does it&#x27;s current ability allow it to contextualise new training data?
      • placebo56 minutes ago
        &gt;Even the most basic questions such as put a ball in a cup and place it on a table upside down then pick up the cup and put it in a box.<p>That reminds me - this used to be my go-to question for smaller models and on which they would always fail miserably on:<p>A small strawberry is placed in a large cup. The cup is placed upside down on the kitchen table. Someone then lifts the cup as-is and puts it in the microwave. Where is the strawberry when the cup is in the microwave?<p>Here&#x27;s what the 1.9GB VibeThinker-3B-GGUF:Q4_K_M answered:<p>Answer: The strawberry is still on the kitchen table – it fell out when the cup was turned upside‑down, and the subsequent lift‑and‑microwave move doesn’t change that.<p>So it seems there is definite progress here. Both specialized and yet improved common sense on things outside its domain of specialization.
        • dmichulke6 minutes ago
          The hard part was always the number of &#x27;r&#x27;s
      • mejutoco4 hours ago
        &gt; Even the most basic questions such as put a ball in a cup and place it on a table upside down then pick up the cup and put it in a box.<p>I do not think this is a great example. First, it is not a question. Second, it seems very related to robotics. A model itself cannot put a ball anywhere, it can just call tools and answer in text, image, etc.<p>An LLM seeing &quot;put a x in a y and place it on a z upside down then pick up the y and put it in a z2.&quot; and then a question about what happens could check a rag for properties of those x,y,z,z2 and still answer. Alternatively, this could be useful for coding, for example. And that is a very extreme example. Some basic language plus tool use could go quite far. I think it is a very interesting direction vs here is a gpu the price of a car.
        • grumbelbart21 hour ago
          The thing is we tried that for decades, using more formal logic to build reasoning engines. And we never got it to be even a fraction as good and generic as learning-based LLMs are today.
          • mejutoco1 hour ago
            I dont think think my point is getting across. This is in the context of how much world knowledge a model needs to be trained on, not llm vs not llm.
    • hypendev1 hour ago
      Because reasoning is an emergent byproduct of training it on all knowledge. It still doesn&#x27;t &quot;know&quot; things in this form and just generates tokens, no matter how weird we spin it.<p>So if you don&#x27;t train it on a large dataset of a lot of words with a lot of sensible connections, it won&#x27;t be able to reason, as it won&#x27;t be able to make proper connections between words and sentences.<p>You can try training a really small model and seeing the gibberish outputs when you train it on only a small dataset.<p>Minmaxing the dataset to extract maximum generation with minimal data does sound like fun, but if you want to build SoTA models as a company, the economic tradeoff of doing that vs slapping a few more GPU&#x27;s together is terrible.
      • cogman1052 minutes ago
        I think small expert models could be pretty powerful from open weight providers.<p>Imagine, for example, a model that&#x27;s primarily train on typescript and general programming. It would be faster to train and it could be a lot smaller than a generalist model. It might be the best model to pick when you are doing typescript programming. And if you could squeeze that into 3B parameters a lot of consumer hardware could run it locally.<p>You could even expand it to just &quot;webdev tech&quot; or the like.
    • kitd5 hours ago
      &quot;The right tools&quot; in this case might presumably include, eg, a set of repos + docs and specs on the various technologies being used. Or a library of text&#x2F;images and background docs on style and techniques use to create them.<p>That plus this model should give you a very powerful and focussed assistant.
    • soulofmischief4 hours ago
      Choosing between a model that can only &quot;reason&quot; and a model that has extensive knowledge and &quot;reasoning&quot;, the latter will be undeniably better. Advanced reasoning requires cross-domain knowledge, superb pattern recognition, which can only be gained through the same mechanisms which give you a knowledgeable model.<p>Except for the most basic of tasks, such as &quot;turn on my lights&quot; or &quot;cross-reference these two lists&quot;, I wouldn&#x27;t trust a small model to be as conscientious and reliable as one with deep knowledge.
    • altmanaltman9 hours ago
      Yeah but don&#x27;t you think like that&#x27;s an oversimplication with the metaphor if we assume this model can do a smart human-level analysis and distillation of knowledge, no? I mean if that were true (i.e. its just like that) then yeah there is no need for massive models but I really would doubt that.<p>Even recent massive models do not work anything like a smart human does at the moment so why are we assuming this can?
  • nolist_policy19 minutes ago
    Notable:<p><pre><code> VibeThinker-3B is developed through a staged post-training pipeline built upon Qwen2.5-Coder-3B base, a compact 3B foundation model. </code></pre> Qwen2.5 is ancient by LLM standards.
  • deftio11 hours ago
    There is some base level of intelligence any model needs to be useful, even in narrow tasks.<p>Could you teach a 5 year old to drive a car? A 10 year old? A 12 year old? To drive a car requires being able to read, to have judgement about ice or rainy conditions, to anticipate a child running after a ball. By the time a human in in their mid teens they have acquired the base knowledge...<p>Small models need to have enough base knowledge to be able to be good enough -- even in a seemingly narrow regime. Where is that? Obviously they don&#x27;t need all the obscure knowledge of a frontier model but there is some base level which is probably more than it would first seem.
    • swiftcoder9 hours ago
      &gt; To drive a car requires being able to read<p>Emphatically, it does not. Passing your drivers test may require being able to read, but plenty of illiterate people around the world drive just fine.<p>There is a reason we made all the common road signs recognisable purely by shape&#x2F;colour, after all.
      • avereveard7 hours ago
        Until they reverse on a highway and kill a family. Being able to drive isn&#x27;t where parent poster put the bar
        • swiftcoder7 hours ago
          I don&#x27;t see what reading has to do with knowing not to reverse on a highway. It&#x27;s not like they put up big glowing signs that say &quot;wrong way&quot; like in a video game.
          • popopo736 hours ago
            In Australia, you will see signs on freeway offramps pointing to any cars attempting to drive on to the freeway &#x27;WRONG WAY GO BACK&#x27; [0]<p>Though it is true you don&#x27;t need to be able to read to operate a vehicle, you &#x2F;do&#x2F; need to be able to read to operate a vehicle safely.<p>And for those who can read: could you teach someone how to drive using an LLM? Sure. Safely? Probably not.<p>[0] <a href="https:&#x2F;&#x2F;www.transport.nsw.gov.au&#x2F;operations&#x2F;roads-and-waterways&#x2F;traffic-signs&#x2F;g9-69-wrong-way-go-back" rel="nofollow">https:&#x2F;&#x2F;www.transport.nsw.gov.au&#x2F;operations&#x2F;roads-and-waterw...</a>
            • wongarsu6 hours ago
              Most of the world follows the Vienna Convention on Road Signs and Signals, where all the important road signs are understandable without reading. This is how no entry signs look around the world [1]<p>Especially important in places like Europe, where it&#x27;s common for the driver to be able to read, but unable to speak the language of the country they are currently driving through. I can&#x27;t speak any Polish, but can travel on Polish roads just fine<p>1: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Prohibitory_traffic_sign#No_entry" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Prohibitory_traffic_sign#No_en...</a>
              • brookst3 hours ago
                This. It’s bizarre to claim that it’s impossible to drive safely in a country where you don’t speak the language. I’ve driven plenty in remote parts of the Middle East despite not reading Arabic, and never once went into oncoming traffic.
                • mycall2 hours ago
                  I&#x27;ve had some close calls with roundabouts with one-way on&#x2F;off roads, especially figuring out the bike lanes. None of it required reading but would have been safer for sure.<p>Then there is Hanoi.
            • coldtea5 hours ago
              &gt;<i>Though it is true you don&#x27;t need to be able to read to operate a vehicle, you &#x2F;do&#x2F; need to be able to read to operate a vehicle safely.</i><p>Not really. You just need to be able to decipher the sign, which is trivial, even if you can&#x27;t read it or spell it.
          • supergarfield6 hours ago
            I agree that drivers should know not to reverse on a highway regardless of local signage.<p>But in situations that could be ambiguous, I think this is a regional difference - the US, Australia, part of the rest of the Americas use lots of text on road signs (including literal &quot;wrong way&quot; signs); Europe and much of the rest of the world use far less text (including purely pictographic &quot;wrong way&quot; signs). Especially important in Europe where drivers just can&#x27;t learn 20+ languages.
          • avereveard6 hours ago
            There literally are &quot;no u turn&quot; signage where you are supposed not to do that. They literally put up signs for it. It is not glowing in the sky, and it doesnt need to be, and doesnt help making a point strawmanning it.
            • swiftcoder4 hours ago
              &gt; There literally are &quot;no u turn&quot; signage where you are supposed not to do that<p>These signs, you mean? <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Prohibitory_traffic_sign#No_U-turn_signs" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Prohibitory_traffic_sign#No_U-...</a>
              • avereveard3 minutes ago
                <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Prohibitory_traffic_sign#&#x2F;media&#x2F;File:MUTCD_R3-3.svg" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Prohibitory_traffic_sign#&#x2F;medi...</a> yeah?
            • coldtea5 hours ago
              And it&#x27;s trivial to learn &quot;no u turn&quot; and a few other basic signs as a graphic, even when you can&#x27;t read them (or can&#x27;t read in general).<p>It&#x27;s also trivial to do a u turn even when you can read, know what the sign says, and you feel like doing one because no car is coming anyway, and millions of people do that everyday too.
        • coldtea5 hours ago
          Not reversing on a highway doesn&#x27;t require reading, just driving sense.<p>And whole lot of people have done stupid shit like that while perfectly able to read, many even with masters and PhDs.
    • delis-thumbs-7e1 hour ago
      &gt; To drive a car requires being able to read, to have judgement about ice or rainy conditions, to anticipate a child running after a ball. By the time a human in in their mid teens they have acquired the base knowledge...<p>It is really strange to see comments like this here, where people seem to reduce some basic human action into how it would work in a text-only computer game. Driving itself requires mainly muscular memory how to operate the car, which why people who drive a lot can just go on autopilot and think something completely different when driving long distances. That is of course a form of kno, but you only get it through repetition. Of course driving in <i>traffic</i> requires far more, basic understanding of traffic law etc, but most of driving is muscle memory, understanding the vehicle and anticipating future occurrences. Why we apes are so good at this is because we have some million years of evolution of just using our bodies and seeing what happens. And of course we all seen the gif of an orangutang driving a golf cart (how real it is I’m uncertain), so there’s that.<p>I think might help to think models not as some future replicants, but models with certain capabilities in certain domains. It probably doesn’t make much sense to ask Opus 4.8 to drive you around as it doesn’t make sense to except a small image model made for edge devices to be able to write a novel. Perhaps we should just think of them as tools with certain applications they are made for.
    • ygjb10 hours ago
      &gt; Could you teach a 5 year old to drive a car? A 10 year old? A 12 year old? To drive a car requires being able to read, to have judgement about ice or rainy conditions, to anticipate a child running after a ball. By the time a human in in their mid teens they have acquired the base knowledge...<p>I would be interested to see a formal study of this. I say this not out of anything other than a observation that I think the only real blockers are a) judgement, and b) physical reflexes&#x2F;strength. As a kid I was certainly aware of ice,snow, and rain, because I road my bike year round and had low confidence in my own ability to control my bike on snowy or wet terrain, especially during season changes. That translated into learning to drive in northern Canada in the winter and applying those lessons to driving.<p>In an environment devoid of consequences, I have seen kids operate driving simulations (both real simulations, and video games) with a degree of precision that is shocking, including seeing several 9-11 year olds play the simulations and games with a much higher degree of confidence than adult drivers. Children have an awareness that the simulations are consequence free, unless given other motivation. Adults that are consistent drivers have muscle memory and preconceived expectations that govern the decisions they make when playing the game. I am curious about the level of training and exposure required for children to overcome their lack of awareness of the hard limits and consequences of driving and driver error, versus the amount of training and exposure required for expert drivers that are novice gamers to <i>stop</i> applying their learned experience to consequence free simulations.
      • attila-lendvai7 hours ago
        if you don&#x27;t sit in the car you lack <i>a lot</i> of information. driving without them is almost a different skill.<p>(i&#x27;m above average in both)
    • threatripper9 hours ago
      Ask people who grew up on a farm in a rural area. Sometimes you have to even if you can&#x27;t and you do.
      • subscribed7 hours ago
        I was driving a tractor since 12, including on the road with small farm equipment, and indeed, mostly out of the necessity, but I also received a lot of tuition (from licenced drivers) to know how to behave.<p>Different times though.
        • coldtea5 hours ago
          Not that different. Still happens all the time all over the world (the west included).
      • madduci7 hours ago
        True story, they can already drive a tractor at 10 and I know people who learned to drive a proper truck at 13 too
    • universa19 hours ago
      A 10 year old definitely,and 5year old is close, but not unrealistic, To drive a car you don&#x27;t need to be able to read... To drive a car on the road with other people is a whole other story :-)
      • 3eb7988a16639 hours ago
        I suspect plenty of five year olds can do a respectable job in Mario Kart, Gran Turismo, etc driving games. Gaming has too low of stakes to judge them on perfectly adhering to the rules of the road, but the ability is there.
    • jmalicki9 hours ago
      You can teach a dog to drive a car.<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=BWAK0J8Uhzk" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=BWAK0J8Uhzk</a>
      • dkersten8 hours ago
        And AI tried telling me that Uber for Dogs (dogs are the drivers) was a terrible idea…
    • smokel10 hours ago
      Being able to drive a car properly also depends on having the right exploration-exploitation balance. A three-year-old is likely to explore too much in a situation where mistakes can be dangerous.<p>This requires not only knowledge, but also the control systems that develop with the prefrontal cortex. LLMs don&#x27;t do much control yet.
    • satvikpendem9 hours ago
      While I agree with your assessment, probably could&#x27;ve chosen a better example, as in many countries young kids even as young as 8 will learn how to drive.
      • embedding-shape8 hours ago
        In some countries they even let kids as young as 16 drive, no wonder they have so many accidents.
        • swiftcoder7 hours ago
          Several US states will give you a permit to drive a farm vehicle on public roads at 14. Illinois recently passed an amendment to allow farm kids to drive a semi-truck at 16. And there is absolutely no minimum age for driving so long as you are on private land - I have seen 8 year olds driving a pickup truck round a farm...
    • YetAnotherNick49 minutes ago
      &gt; A 10 year old<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=sLIAoW4QxIs" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=sLIAoW4QxIs</a>
    • skeledrew6 hours ago
      &gt; To drive a car requires being able to read, to have judgement about ice or rainy conditions, to anticipate a child running after a ball.<p>Conflation. That&#x27;s to drive a car <i>safely</i>. To just drive a car one only need know to press gas to move, press brake to stop, turn steering wheel to change direction and maybe use a gear stick to shift into drive&#x2F;park (car can be modified to abstract that away). Not much more complex than riding a bicycle; maybe even less since no need to learn to balance.
    • wilg9 hours ago
      This is more of a question of the definition of &quot;drive a car&quot; than any specific issue about intelligence. Drive a car without errors? Impossible, and now we&#x27;re into a subjective discussion about what feels intelligent. Pass the DMV test? Probably. How complicated are the conditions? There are plenty of drivers with bad judgement. It&#x27;s a quicksand sort of discussion.
    • coldtea5 hours ago
      &gt;<i>To drive a car requires being able to read</i><p>Millions of people do drive who can&#x27;t read. It&#x27;s very common in parts of Asia, Africa, Latin America, etc, especially rural, but even in cities.<p>There are places where oral exams and audio-assisted testing is allowed. And there are places where people just drive (and drive fine) not bothering with a license.
  • achrono22 minutes ago
    Beats Opus 4.5 on reasoning you say?<p>Prompt: If A goes to B who then goes to C, can A send something to C?<p>Response:<p>We need to interpret best. The phrase &quot;If A goes to B who then goes to C, can A send something to C?&quot; could be a puzzle about the concept of sending something (like passing a ball) and the relationships.<p>Scenario: A gives something to B, and B passes it on to C. Question: Can A also give the same thing to C? Answer: Only if A can obtain a second copy (e.g., the thing was duplicated). Otherwise, after handing it to B, A no longer holds it and cannot “send” it unless a copy exists.<p>[Lots of other unnecessary commentary and &quot;scenarios&quot; that make even lesser sense]
    • erdevs6 minutes ago
      I am a human and I don&#x27;t know how to interpret this prompt.
  • yousif_12312351 minutes ago
    I really hope that in a couple of years I can have a laptop that runs a reasonably good coding agent locally, that I can run fast and do most of my programming with, without running my laptop hot. I could keep open code and use other models when needed, but really for most of my work, I&#x27;m already breaking it down so that I can review code changes eventually, and I just need something reasonably decent and fast and unlimited. I think its coming.
    • alkonaut47 minutes ago
      I hope so too. But I fear that it will feel inadequate if we know there is always a $20 online model that is an order of magnitude better. I don&#x27;t think there will be a &quot;good enough&quot; local model so long as frontier models look so much better.
      • vadansky22 minutes ago
        Seems like most people have settled on Opus 4.6 as the breaking point (me as well).<p>Once I can spend 10k to run Opus 4.6 at home, I&#x27;m done.
    • yogthos40 minutes ago
      I&#x27;m very optimistic here as well. And it&#x27;s also worth noting that tooling is improving along with the models. I really think we have to treat models and tools as a package. The models is your engine, but you need a chassis to run it.<p>I find what makes frontier models actually work well isn&#x27;t just the capability of the model, but how well the harness is tuned to its expectations. I wrote a about this in a bit more detail here. <a href="https:&#x2F;&#x2F;yogthos.net&#x2F;posts&#x2F;2026-06-08-dirge-code.html" rel="nofollow">https:&#x2F;&#x2F;yogthos.net&#x2F;posts&#x2F;2026-06-08-dirge-code.html</a>
  • gslepak11 hours ago
    Note that these are Python-only results, the model will not do as well with other languages.<p>I&#x27;m glad to see more domain-focused SLMs, we need more of them! A programming focused MoE should work well across many languages.
    • rcarmo4 hours ago
      If it writes functional Python instead of cosplaying as a Java programmer and cramming code with classes and accessors, it&#x27;s already better than Opus...
    • nsingh210 hours ago
      Lots of confusion about what this model is actually focused on.<p>It is a cheap specialist for closed-world, verifiable reasoning tasks like math, self-contained coding problems, and similar.<p>&quot;Closed-world&quot; means the needed information is already in the context. It is not a tool-using agent that can discover missing context. &quot;Verifiable&quot; means answers are hard to generate but easy to check.<p>So no open ended research, repo wide agent work, factual Q&amp;A, or SVG generation. More of a compact reasoning module for bounded problems.
      • nsingh29 hours ago
        To follow up on this, I had it solve a nasty ODE problem that I saw in the recent Mathematica 15 release post:<p><pre><code> Solve the following first-order ODE for f(x): ((-1 - 2*x)*f(x)*tan(1 + x - exp(-61 - 2*x)*f(x)&#x2F;x) + exp(61 + 2*x)*x*(1 - x*tan(1 + x - exp(-61 - 2*x)*f(x)&#x2F;x)) + x*tan(1 + x - exp(-61 - 2*x)*f(x)&#x2F;x)*f&#x27;(x)) = 0 Find the general solution f(x). </code></pre> And surprisingly it found a valid solution! Extra impressive because it runs 25 tok&#x2F;s on my measly RTX 2070 super.<p><pre><code> f(x) = x*exp(61 + 2*x)*(1 + x - arccos(C&#x2F;x)) C is an arbitrary constant. </code></pre> Apparently Mathematica 14.3 couldn&#x27;t solve this ODE.
        • kanbankaren2 hours ago
          Qwen 3.5 9B Q4_K_M solved this using 10K tokens in 5 mins on a RX 7600.<p>The answer is exactly what you have posted. I am impressed by Qwen!
        • le-mark4 hours ago
          How do you know it’s a valid solution? Are you able to verify it yourself?
          • krageon1 hour ago
            This is a math problem with a math solution. You verify it with math
        • kame3d7 hours ago
          Interesting!<p>I just tried the quantized Q4_K_M from [1] in my RTX 2070 Super, it ran at 110 tok&#x2F;s with 1800 tok&#x2F;s prefill, and found the same solution to your prompt. It generated valid LaTeX for the answer but its reasoning trace uses mostly compact ASCII math notation. Took 3min 22s to answer, spending 22k tokens almost all on thinking.<p>[1] <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;prithivMLmods&#x2F;VibeThinker-3B-GGUF" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;prithivMLmods&#x2F;VibeThinker-3B-GGUF</a>
        • trick-or-treat7 hours ago
          How do we know the solution isn&#x27;t in the weights though?
      • skeledrew7 hours ago
        If it can code well then once you put it in a loop with an interpreter it can do anything.
  • NotSuspicious10 hours ago
    The interesting thing about models this small is they should be able to be put on a single Taalas chip (the HC1 already runs a Llama 3.1 8B model). We&#x27;re already at the point where half-decent reasoning could be run on an ASIC (and at mind-boggling speeds).
    • pants29 hours ago
      Yeah, if they can fit an 8B model that&#x27;s really good at improving the output by thinking, running at 16K tok&#x2F;s on Taalas would be mind-blowing.
      • le-mark4 hours ago
        Given this and the quality of open models, it makes no sense to me that there’s a future for Anthropic et all?
        • james_marks2 hours ago
          Packaging a capability into a consumable form will still be business.<p>It&#x27;s like web hosting; all the open source tools are there and free, and yet website tools, hosts, etc flourish.
          • WhiteDawn2 hours ago
            It’s true, but hosting prices are still within spitting distance of rolling it yourself.<p>SOTA providers are expecting some level of margin. Companies everywhere have a tight eye on their AI bills right now.<p>The motivation is there if the models get good enough, even if it’s more painful.
  • sorenjan2 hours ago
    How would you best utilize a model like this for coding? I take it it&#x27;s not meant for vibe coding a full app, and the reasoning probably makes it unsuitable for autocomplete. Would you use it to implement specific functions? I looked at one of the coding benchmarks used, Live Code Bench, and it seems to be problem descriptions with sample input and output, and then a solution with a single function or class.<p>Seems like a really good model to use in an IDE when you still want control over the code structure then.
    • aswegs81 hour ago
      Not sure if it&#x27;s suited for that. If you read the article it&#x27;s stated that it is basically a research project to see how far they can push it with small models.
  • noperator11 hours ago
    Having some success while testing this model out as a replacement for GPT-5 nano in source code security review. Running on RTX 3090 (24 GB VRAM) via vLLM. It&#x27;s not great on structured output (as noted in the model card) but I&#x27;m working around that in my harness.
    • dummydummy123411 hours ago
      Can&#x27;t you just force it to do structured output via constrained generation?
    • hypfer9 hours ago
      &gt; but I&#x27;m working around that in my harness.<p>How?
      • uberex3 hours ago
        Maybe limiting logits to what is syntactically correct? E.g. {&quot;hello&quot; has to be followed by whitespace or colon. Any other logits get dropped.
  • virajk_312 hours ago
    SLM when trained for single use case often beats the LLM. That&#x27;s both the advantage and limitation.
  • iamgopal2 hours ago
    Two model, one is optimised for system, reasoning etc, second is optimised for specific language ( rust or go ? ) , both small enough to run on local computer, will it work ?
  • androiddrew3 hours ago
    I have been thinking about how to use this. Since it doesn’t support tool calling I have been considering a dual model deployment, where a small tool calling llm drives the majority of the user experience, and vibe thinker is tapped for reasoning by the other llm.<p>So who has suggestions on small models with excellent tool calling capabilities?
    • smallerize2 hours ago
      Gemma 4 E4B and Qwen 3 4B are pretty good, but fine-tuning makes them really good. There are tradeoffs at this size, so you&#x27;ll have to find (or make) a finetune that does what you need.
    • j-bos3 hours ago
      Maybe bonsai 8b would make the duo, if you do try it, pls post here as I&#x27;m a bit curious too.
    • reddec3 hours ago
      granite 4
  • jpcompartir1 hour ago
    The absolute worst name for a model I&#x27;ve seen
  • aero214612 hours ago
    I tried generating the classic pelican svg, but it failed horribly just showing me a rectangle and a black circle...
    • fwipsy11 hours ago
      I think this is predicted? Part of the story is how they were able to preserve core reasoning ability while cutting knowledge like &quot;pelicans have wings.&quot;<p>&gt; these findings motivate the Parametric Compression-Coverage Hypothesis, which views verifiable reasoning as compressible into compact reasoning cores, while open-domain knowledge and general-purpose competence require broad parameter coverage over facts, concepts, and long-tail scenarios.
      • pylotlight11 hours ago
        The only real essential item here is tool calling capability is it not? So I assume they tested a strong read&#x2F;write&#x2F;edit tool consistency?
        • nsingh211 hours ago
          This model doesn&#x27;t support tool calling, was not part of its training. It&#x27;s focused on Python (and I think C++) competitive programming and mathematics tasks, i.e. tasks with verifiable rewards. So if you have a task that fits that description, the size-to-capability ratio is good.<p>These kinds of models might be more useful as tools to be used by larger orchestrator models, than being the orchestrators themselves.
        • btown11 hours ago
          I&#x27;m not seeing any mention of tools in the paper, much less a bias towards &quot;curiosity&quot; to use those tools when it encounters gaps in its knowledge. So perhaps this is a good proof-of-concept that single-pass code generation is viable with this small a model - but we&#x27;re still a long way from a viable solution.
    • kristopolous9 hours ago
      try it again but give a careful explanation of what a bicycle and a pelican is and how the pelican would sit atop the bicycle. Then give it a reference to the SVG tags you want it to use with documentation.<p>Here&#x27;s what I got<p><a href="https:&#x2F;&#x2F;9ol.es&#x2F;tmp&#x2F;pelican.png" rel="nofollow">https:&#x2F;&#x2F;9ol.es&#x2F;tmp&#x2F;pelican.png</a><p>with <a href="https:&#x2F;&#x2F;9ol.es&#x2F;tmp&#x2F;prompt_pelican.txt" rel="nofollow">https:&#x2F;&#x2F;9ol.es&#x2F;tmp&#x2F;prompt_pelican.txt</a><p>using prithivMLmods&#x2F;VibeThinker-3B-GGUF:Q4_K_M
    • physPop11 hours ago
      Its for reasoning not generating art?
      • websap11 hours ago
        Can you explain this a bit more
        • tyre11 hours ago
          Imagine you want to make a smaller model that is really good at one thing, say, driving a car. You could remove the parameters that lead it to correctly answer, &quot;What is the powerhouse of the cell?&quot; or, &quot;Who was the first president of the United States?&quot;<p>It would look really dumb if someone asked it that, but that&#x27;s fine. You&#x27;re trying to make a model that is optimized for efficiency for a specific task. As much as possible, you should prune uncorrelated things.
        • pylotlight11 hours ago
          SVG generation is a useless test, what&#x27;s there more to know?
          • steve_adams_8611 hours ago
            What if you&#x27;re reasoning about how to generate SVG correctly?
            • Mtinie10 hours ago
              In this case, I’d expect it should make a web search tool call to find the Python library best suited for SVG generation and manipulation, and then use what it learns there to execute the task you’ve asked it to do (either asking if you’d like to incorporate the library as a dependency or to roll its own implementation of a subset of the features if that was your preference),<p>Assuming tool calling hasn’t been entirely stripped out of this model.<p>(Edit) No tool calling, per this comment: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=48640189">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=48640189</a>
    • realitysballs12 hours ago
      That’s all I needed to hear
      • pylotlight11 hours ago
        As in, you learnt that a useless test that no one should be using was tested here, that&#x27;s what you meant right?
  • cold_harbor2 hours ago
    GRPO skips the value network that makes PPO expensive — it scores candidates relative to each other within a group. that&#x27;s what makes verifiable-reward training practical at 3B scale
  • SwellJoe11 hours ago
    It&#x27;s terrible at hunting security bugs (I expected it to be, but I wanted to be sure). I added it to a benchmark I made with a corpus of some Mythos-discovered bugs, and it found zero. The smallest pretty successful models remain Qwen 3.6 and Gemma 4 (but I haven&#x27;t tested the very small variants of those yet).<p><a href="https:&#x2F;&#x2F;swelljoe.com&#x2F;post&#x2F;will-it-mythos&#x2F;" rel="nofollow">https:&#x2F;&#x2F;swelljoe.com&#x2F;post&#x2F;will-it-mythos&#x2F;</a>
    • nsingh210 hours ago
      The lack of tool use will hinder it a lot I think, since bug hunting requires collecting context across a code base and stitching it together. It might be good in a more narrow sense, i.e &quot;is there a bug in this block of code&quot; and not considering how it interacts with the rest of the code base.<p>That&#x27;s also more aligned to its leetcode style training data, the code under test is fully in the context window. It might be interesting to have a bigger tool use model go through the effort of collecting the context, and feeding it into this kind of model for analysis only. It becomes more of a thinking tool, instead of the orchestrator.
  • brainless6 hours ago
    I recently came across this model and I would love to try it with my coding agent soon.<p>I really like the idea of small models that can reason but do not have too much knowledge. Also, no emphasis on tool calls. I think the agent should do the heavy lifting and reach half way.<p>I use really small models, like Qwen 3.5 0.8B to 9B - no tool calling, no MCP, no skills, nothing. No multi-turn chat even. Models are given very specific tasks using a vast number of system prompts and all the response handling is done in the agent(s).<p><a href="https:&#x2F;&#x2F;github.com&#x2F;brainless&#x2F;nocodo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;brainless&#x2F;nocodo</a>
    • SubiculumCode55 minutes ago
      Maybe no tool calling, but seems it could be really good at deciding which tool to use and when?
  • uberex3 hours ago
    What is the idiots guude to run this one local now?
  • unfirehose3 hours ago
    this is a good model. I benchmark reasoned answers to qwen 3.6 27b (no think)+ bash and it held up.
  • scotty797 hours ago
    If you could pair it somehow with a model that can code and describe code this could be a very powerful combo.
  • 4gotunameagain1 hour ago
    What are the implications of local SOTA inference, given the insane datacenter &quot;investing&quot; ?<p>It surely cannot be justified only for training at this scale, and since models nowadays are improved more and more by fine tuning than re-training from scratch.<p>Will a viable local model crash the US economy ?<p>More importantly, are the LLM companies aware, and are they deliberately buying out all the RAM and GPUs in order to prolong the inevitable ? Probably not, but I wouldn&#x27;t be surprised if that is the case.
  • anonyfox8 hours ago
    Wake me up when it does OCaml fine.
  • c12161835 minutes ago
    [flagged]
  • diseasedyak1 hour ago
    [dead]
  • sosojustdo12 hours ago
    [flagged]
  • jkwang7 hours ago
    [flagged]
  • cheekygeeky47 minutes ago
    [flagged]
  • riponcm10 hours ago
    [dead]
  • lisa_luoyf6 hours ago
    [flagged]
  • t_e_s_t6 hours ago
    [flagged]
  • t_e_s_t6 hours ago
    [flagged]
  • maxignol6 hours ago
    3B param on par with opus 4.5 sounds interesting. Will read the full article before making my mind
  • zkmon8 hours ago
    Does python coding depend on political facts of the world?<p>It might appear not, but actually, the process of reasoning is not an isolated act. The right and wrong way of doing things is codified in social evolution that absorbed all facets of life. Why should you optimize a piece of code for performance? Why performance is needed? What is a bug? What features and UI themes would be more intuitive for humans?<p>There is a butterfly effect. Everything affects everything to some extent.
  • kmchandy43 minutes ago
    The paper makes a clear claim: &quot;it provides an important and concrete proof: on well-constrained, verifiable reasoning tasks, first-tier performance is no longer the exclusive domain of ultra-large models&quot; And that&#x27;s exciting.