• jjcm 11 hours ago
    1 bit with a FP16 scale factor every 128 bits. Fascinating that this works so well.

    I tried a few things with it. Got it driving Cursor, which in itself was impressive - it handled some tool usage. Via cursor I had it generate a few web page tests.

    On a monte carlo simulation of pi, it got the logic correct but failed to build an interface to start the test. Requesting changes mostly worked, but left over some symbols which caused things to fail. Required a bit of manual editing.

    Tried a Simon Wilson pelican as well - very abstract, not recognizable at all as a bird or a bicycle.

    Pictures of the results here: https://x.com/pwnies/status/2039122871604441213

    There doesn't seem to be a demo link on their webpage, so here's a llama.cpp running on my local desktop if people want to try it out. I'll keep this running for a couple hours past this post: https://unfarmable-overaffirmatively-euclid.ngrok-free.dev

    [-]
    • najarvg 11 hours ago
      Thanks for sharing the link to your instance. Was blazing fast in responding. Tried throwing a few things at it with the following results: 1. Generating an R script to take a city and country name and finding it's lat/long and mapping it using ggmaps. Generated a pretty decent script (could be more optimal but impressive for the model size) with warnings about using geojson if possible 2. Generate a latex script to display the gaussian integral equation - generated a (I think) non-standard version using probability distribution functions instead of the general version but still give it points for that. Gave explanations of the formula, parameters as well as instructions on how to compile the script using BASH etc 3. Generate a latex script to display the euler identity equation - this one it nailed.

      Strongly agree that the knowledge density is impressive for the being a 1-bit model with such a small size and blazing fast response

      [-]
      • jjcm 11 hours ago
        > Was blazing fast in responding.

        I should note this is running on an RTX 6000 pro, so it's probably at the max speed you'll get for "consumer" hardware.

        [-]
        • ineedasername 9 hours ago
          consumer hardware?

          That... pft. Nevermind, I'm just jealous

          [-]
          • jjcm 8 hours ago
            Look it was my present to myself after the Figma IPO (worked there 5 years). If you want to feel less jealous, look at the stock price since then.
        • abrookewood 8 hours ago
          Holy hell ... that's a monster of a card
      • najarvg 11 hours ago
        I must add that I also tried out the standard "should I walk or drive to the carwash 100 meters away for washing the car" and it made usual error or suggesting a walk given the distance and health reasons etc. But then this does not claim to be a reasoning model and I did not expect, in the remotest case, for this to be answered correctly. Ever previous generation larger reasoning models struggle with this
        [-]
        • jjcm 11 hours ago
          I ran it through a rudimentary thinking harness, and it still failed, fwiw:

              The question is about the best mode of transportation to a car wash located 100 meters away. Since the user is asking for a recommendation, it's important to consider practical factors like distance, time, and convenience.
          
              Walking is the most convenient and eco-friendly option, especially if the car wash is within a short distance. It avoids the need for any transportation and is ideal for quick errands.
              Driving is also an option, but it involves the time and effort of starting and stopping the car, parking, and navigating to the location.
              Given the proximity of the car wash (100 meters), walking is the most practical and efficient choice. If the user has a preference or if the distance is longer, they can adjust accordingly.
    • AnthonBerg 3 hours ago
      As someone whose brain was addled by exposure to art history, I strongly support the suggested pelican on bicycle.
    • adityashankar 11 hours ago
      here's the google colab link, https://colab.research.google.com/drive/1EzyAaQ2nwDv_1X0jaC5... since the ngrok like likely got ddosed by the number of individuals coming along
      [-]
      • qingcharles 6 hours ago
        Thanks, that works. I only tested the 1.7B. It has that original GPT3 feel to it. Hallucinates like crazy when it doesn't know something. For something that will fit on a GTX1080, though, it's solid.

        We're only a couple of years into optimization tech for LLMs. How many other optimizations are we yet to find? Just how small can you make a working LLM that doesn't emit nonsense? With the right math could we have been running LLMs in the 1990s?

      • jjcm 11 hours ago
        Good call. Right now though traffic is low (1 req per min). With the speed of completion I should be able to handle ~100x that, but if the ngrok link doesn't work defo use the google colab link.
        [-]
        • adityashankar 11 hours ago
          The link didn't work for me personally, but that may be a bandwidth issue with me fighting for a connection in the EU
    • andai 9 hours ago
      Thanks. Did you need to use Prism's llama.cpp fork to run this?
      [-]
      • jjcm 8 hours ago
        Yep.
        [-]
        • andai 7 hours ago
          Could you elaborate on what you did to get it working? I built it from source, but couldn't get it (the 4B model) to produce coherent English.

          Sample output below (the model's response to "hi" in the forked llama-cli):

          X ( Altern as the from (.. Each. ( the or,./, and, can the Altern for few the as ( (. . ( the You theb,’s, Switch, You entire as other, You can the similar is the, can the You other on, and. Altern. . That, on, and similar, and, similar,, and, or in

          [-]
          • freakynit 7 hours ago
            I have older M1 air with 8GB, but still getting ober 23 t/s on 4B model.. and the quality of outputs is on par with top models of similar size.

            1. Clone their forked repo: `git clone https://github.com/PrismML-Eng/llama.cpp.git`

            2. Then (assuming you already have xcode build tools installed):

              cd llama.cpp
              cmake -B build -DGGML_METAL=ON
              cmake --build build --config Release -j$(sysctl -n hw.logicalcpu)
            
            3. Finally, run it with (you can adjust arguments):

              ./build/bin/llama-server -m ~/Downloads/Bonsai-8B.gguf --port 80 --host 0.0.0.0 --ctx-size 0 --parallel 4 --flash-attn on --no-perf --log-colors on --api-key some_api_key_string
            
            Model was first downloaded from: https://huggingface.co/prism-ml/Bonsai-8B-gguf/tree/main
            [-]
            • freakynit 6 hours ago
              To the author: why is this taking 4.56GB ? I was expecting this to be under 1GB for 4B model. https://ibb.co/CprTGZ1c

              And this is when Im serving zero prompts.. just loaded the model (using llama-server).

          • jjcm 7 hours ago
            I did this: https://image.non.io/2093de83-97f6-43e1-a95e-3667b6d89b3f.we...

            Literally just downloaded the model into a folder, opened cursor in that folder, and told it to get it running.

            Prompt: The gguf for bonsai 8b are in this local project. Get it up and running so I can chat with it. I don't care through what interface. Just get things going quickly. Run it locally - I have plenty of vram. https://huggingface.co/prism-ml/Bonsai-8B-gguf/tree/main

            I had to ask it to increase the context window size to 64k, but other than that it got it running just fine. After that I just told ngrok the port I was serving it on and voila.

    • rjh29 10 hours ago
      I reminds me of very early ChatGPT with mostly correct answers but some nonsense. Given its speed, it might be interesting to run it through a 'thinking' phase where it double checks its answers and/or use search grounding which would make it significantly more useful.
    • uf00lme 11 hours ago
      The speed is impressive, I wish it could be setup for similar to speculative decoding
    • abrookewood 8 hours ago
      man, that is really really quick. What is your desktop setup??? GPU?
      [-]
    • pdyc 8 hours ago
      thanks, i tested it, failed in strawberry test. qwen 3.5 0.8B with similar size passes it and is far more usable.
      [-]
      • algoth1 2 hours ago
        Does asking it to think step by step, or character by character, improves the answer? It might be a tokenization+unawareness of its own tokenization shortcomings
        [-]
        • pdyc 1 hour ago
          no it did not with character by character it concluded 2 :-)
      • selcuka 7 hours ago
        Interesting. Qwen 3.5 0.8B failed the test for me.
    • hmokiguess 11 hours ago
      wow that was cooler than I expected, curious to embed this for some lightweight semantic workflows now
    • tristanMatthias 10 hours ago
      [dead]
  • nl 2 hours ago
    I ran my custom agentic SQL debugging benchmark against it and I'm impressed.

    Results: 8 passed, 0 failed, 17 errored out of 25

    That puts it right between Qwen3.5-4B (7/25) and Nanbeige4.1-3B (9/25) for example, but it took only 200 seconds for the whole test. Qwen3.5 took 976 seconds and Nanbeige over 2000 (although both of these were on my 1070 so not quite the same hardware)

    Granite 7B 4bit does the test in 199 seconds but only gets 4/25 correct.

    See https://sql-benchmark.nicklothian.com/#all-data (click on the cells for the trace of each question)

    Errors are bad tool calls (vs failures which is incorrect SQL)

    I used @freakynit's runpod (thanks!)

    [1] https://news.ycombinator.com/item?id=47597268

    [-]
    • Imustaskforhelp 2 hours ago
      I have been using @freakynit's runpod as well all be it, I like making working pomodoro apps as my own custom test, and although its not good for it (none of the prototypes work), I feel like it can be good within a specific context like Sql as you mention.

      I imagine this being used as sub-agents with some sota models directing them but I wasn't really able to replicate it personally (I had asked Claude to create a detailed plan for a pomodoro app and then passed it to Bonsai)

      I also tried its writing skills and actually they are kind-of decent, I also found that this model actually uses very comparatively little em-dashes.Its fine tunes are gonna be some really amazing things to come out. I hope someone makes a fine tune for website/tampermonkey extensions ;)

      I remember using chatgpt-3 to use svelte/sveltekit to make a green button to blue button and having the text inside those buttons change and it's my personal wow moment from gpt-3 (This wasn't really able to accurately replicate it even in plain js), but I think that maybe the current model isn't good at writing html but the possibilities with custom-training these models and the idea of 1 bit model feels really great to me.

      Especially with the idea of Ngram-embedding[0] (Meituanlongcat/LongCatFlashLite) and its idea. I imagine a 1 bit model + Ngram-embedding idea and I feel it can have many endless possibilities.

      [0]: https://news.ycombinator.com/item?id=46803687 (I had submitted this but it seems to have had no attention during that time)

      Maybe a 1 bit model like this and diffusion models for coding purposes might also go hand in hand, there are many experiments which can be done with this! (Also yes, many thanks to @freakynit running the runpod, I think I really learnt many things about this model in particular because of his runpod)

      TLDR: I feel like this model is good within writing or atleast better in it than usual and it can be good asking it General purpose questions default but I feel like its not good at making html which can be fair, good to see that they are good in sql, but, not sure how they might approach in normal coding tasks. But either way, its an extremely fun model to play with!

      (Edit: After some more tries, I have been able to make even one prototype of it after Gemini had holded its hands/giving it the code/errors, its not the best at this but still it works, just barely, https://gist.github.com/SerJaimeLannister/e90e8a134e4163f205...)

      [-]
      • nl 32 minutes ago
        > I feel like it can be good within a specific context like Sql as you mention.

        Yes I think very constrained task: known data universe, well known language etc should be the best possible place for small language models to play

        [-]
        • Imustaskforhelp 2 minutes ago
          Yes, I think though that, maybe 1) this shows 1-bit llm models working so more companies can do that so that we can get more competition within this space (+ ngram-embedding idea)

          Another point, but I feel like, we can see some really good fine tuned models out of this model, the community feels excited about 1-bit LLM architecture. We are gonna see some good innovation within this space in the upcoming future.

  • simonw 6 hours ago
    You can run this model on an iPhone via the latest update to this Locally AI app: https://apps.apple.com/us/app/locally-ai-local-ai-chat/id674...

    For its size (1.2GB download) it's very impressive.

    Here's a pelican it drew me running on my phone - the SVG comments are good, the image not so much: https://tools.simonwillison.net/svg-render#%3Csvg%20width%3D...

    [-]
    • newman314 3 hours ago
      One thing I discovered tonight is that it appears smaller models are remarkably bad at converting time between timezones.

      I tested the following using almost all available models on Locally and did not get a single model that got the right answer.

      "What is 9:30 am (Taiwan Standard Time, TST) in US Pacific?"

    • voxelghost 6 hours ago

          <!-- Bicycle wheels -->
          <circle cx="285" cy="130" r="5" fill="#81c784" />
          <circle cx="315" cy="130" r="5" fill="#81c784" />
          <circle cx="285" cy="160" r="5" fill="#81c784" />
          <circle cx="315" cy="160" r="5" fill="#81c784" />
      
      Did you ask for a pelican with a bicycle, or was that just an added bonus?
      [-]
      • IshKebab 2 hours ago
        It's a well known LLM test. Google "SVG pelican bicycle".
  • freakynit 5 hours ago
    Open access for next 5 hours (8GiB model, running on RTX 3090) or until server crashes or the this spot instance gets taken away :) =>

    https://ofo1j9j6qh20a8-80.proxy.runpod.net

      ./build/bin/llama-server \
       -m ../Bonsai-8B.gguf \
       -ngl 999 \
       --flash-attn on \
       --host 0.0.0.0 \
       --port 80 \
       --ctx-size 65500 \
       --batch-size 512 \
       --ubatch-size 512 \
       --parallel 5 \
       --cont-batching \
       --threads 8 \
       --threads-batch 8 \
       --cache-type-k q4_0 \
       --cache-type-v q4_0 \
       --log-colors on
    
    The server can serve 5 parallel request, with each request capped at around `13K` tokens...

    A bit of of benchmarks I did:

    1. Input: 700 tokens, ttfs: ~0 second, outputs: 1822 tokens ~190t/s

    1. Input: 6400+ tokens, ttfs: ~2 second, outputs: 2012 tokens at ~135t/s

    Vram usage was consistently at ~4GiB.

    [-]
    • freakynit 13 minutes ago
      Update: this has been evicted by runpod as it was on spot.
    • ramon156 1 hour ago
      I genuinely love talking to these models

      https://ofo1j9j6qh20a8-80.proxy.runpod.net/#/chat/5554e479-0...

      I'm contemplating whether I should drive or walk to the car wash (I just thought of that one HN post) and this is what it said after a few back-and-forths:

      - Drive to the car (5 minutes), then park and wash.

      - If you have a car wash nearby, you can walk there (2 minutes) and do the washing before driving to your car.

      - If you're in a car wash location, drive to it and wash there.

      Technically the last point was fine, but I like the creativity.

    • ggerganov 4 hours ago
      Better keep the KV cache in full precision
      [-]
      • freakynit 4 hours ago
        Wow.. the GOAT himself.. thank you sooo much for creating llama.cpp ... will re-deploy with full kv cache once requests stop coming.
    • TRCat 4 hours ago
      Thank you! I am impressed by the speed of it.
    • Imustaskforhelp 2 hours ago
      Kind sir, May I say to you thanks for doing so! I really appreciate it :D
    • logicallee 5 hours ago
      That was really impressive. https://pastebin.com/PmJmTLJN pretty much instantly. (Very weak models can't do this.)
    • kgeist 4 hours ago
      [dead]
  • wild_egg 10 hours ago
    Don't have a GPU so tried the CPU option and got 0.6t/s on my old 2018 laptop using their llama.cpp fork.

    Then found out they didn't implement AVX2 for their Q1_0_g128 CPU kernel. Added that and getting ~12t/s which isn't shabby for this old machine.

    Cool model.

    [-]
    • UncleOxidant 8 hours ago
      Are you getting anything besides gibberish out of it? I tried their recommended commandline and it's dog slow even though I built their llama.cpp fork with AVX2 enabled. This is what I get:

          $ ./build/bin/llama-cli     -hf prism-ml/Bonsai-8B-gguf -p "Explain quantum computing in simple terms." -n 256 --temp 0.5 --top-p 0.85 --top-k 20 -ngl 99
          > Explain quantum computing in simple terms.
      
           \( ,
      
            None ( no for the. (,./. all.2... the                                                                                                                                ..... by/
      
      
      EDIT: It runs fine in their collab notebook. Looking at that you have to do: git checkout prism (in the llama.cpp repo) before you build. That's a missing instruction if you're going straight to their fork of llama.cpp. Works fine now.
    • cubefox 8 hours ago
      "Not shabby" is a big understatement.
      [-]
      • ddtaylor 7 hours ago
        Why so?
        [-]
        • boxedemp 7 hours ago
          Because it's the opposite of shabby
  • WaterRun 1 hour ago
    Feels a bit like gradually moving back toward analog circuits, step by step. There is less and less need for the precision that digital circuits provide.
    [-]
    • TheLNL 11 minutes ago
      What ? How did you come to this conclusion with this context ?
  • druskacik 1 hour ago
    The 8B model response to my "Harry Potter knowledge-bench" question is too funny not to share.

    > *Fathers of Harry and James Potter*: - Sirius Black is the *father* of *James Potter* (the older brother of Harry).

    > - James Potter is *Harry's uncle* and the *older brother* of *Luna Lovegood*.

    > - This means *Sirius and James are Harry's uncles*, though they are *father and brother*.

    https://pastebin.com/WAAmFKfX

  • alyxya 12 hours ago
    I expect the trend of large machine learning models to go towards bits rather than operating on floats. There's a lot of inefficiency in floats because typically they're something like normally distributed, which makes the storage and computation with weights inefficient when most values are clustered in a small range. The foundation of neural networks may be rooted in real valued functions, which are simulated with floats, but float operations are just bitwise operations underneath. The only issue is that GPUs operate on floats and standard ML theory works over real numbers.
    [-]
    • hrmtst93837 2 hours ago
      Inference at low bit-widths is easy. Training is where the wheels come off, because you spend the saved math budget on gradient tricks and rescaling just to stop the model from drifting.

      That trade loses outside tight edge deploymints. Float formats stuck around for boring reasons: they handle ugly value ranges and they fit the GPU stack people already own.

    • cubefox 7 hours ago
      > and standard ML theory works over real numbers.

      This paper uses binary numbers only, even for training, with a solid theoretical foundation: https://proceedings.neurips.cc/paper_files/paper/2024/file/7...

      TL;DR: They invent a concept called "Boolean variation" which is the binary analog to the Newton/Leibniz derivative. They are then able to do backpropagation directly in binary.

  • fxwin 3 hours ago
    I'm very skeptical of the advantage they're claiming here. The whitepaper [0] only compares these to full precision models, when the more interesting (and probably more meaningful) comparison would be with other quantized models with a similar memory footprint.

    Especially considering that these models seem to more or less just be quantized variants of Qwen3 with custom kernels and other inference optimizations (?) rather than fine tuned or trained from scratch with a new architecture, I am very surprised (or suspicious rather) that they didn't do the obvious comparison with a quantized Qwen3.

    Their (to my knowledge) new measure/definition of intelligence seems reasonable, but introducing something like this without thorough benchmarking + model comparison is even more of a red flag to me.

    [0] https://github.com/PrismML-Eng/Bonsai-demo/blob/main/1-bit-b...

    [-]
    • riedel 3 hours ago
      Actually IMHO the promise would be beyond standard FP4 quants. I think the goal is more where 1.58 bit (ternary) quants are heading. Having said that it would be interesting to see performance on nonstandard HW.
  • drob518 9 hours ago
    I’m really curious how this scales up. Bonsai delivers an 8B model in 1.15 GB. How large would a 27B or 35B model be? Would it still retain the accuracy of those large models? If the scaling holds, we could see 100+B models in 64 GB of RAM.
    [-]
    • cubefox 8 hours ago
      Also depends on how expensive training these models is. It's probably at least as expensive as full precision models, otherwise they would have mentioned it.
      [-]
      • londons_explore 4 hours ago
        My guess is the training process is their secret sauce...
        [-]
        • cubefox 4 hours ago
          Yes, but their training speed is not secret. If their process were fast, they would have said so.
  • vx_r 2 hours ago
    Eagerly waiting for mlx to merge 1bit quantization pr to try this out.
  • andai 9 hours ago
    Does anyone know how to run this on CPU?

    Do I need to build their llama.cpp fork from source?

    Looks like they only offer CUDA options in the release page, which I think might support CPU mode but refuses to even run without CUDA installed. Seems a bit odd to me, I thought the whole point was supporting low end devices!

    Edit: 30 minutes of C++ compile time later, I got it running. Although it uses 7GB of RAM then hangs at Loading model. I thought this thing was less memory hungry than 4 bit quants?

    Edit 2: Got the 4B version running, but at 0.1 tok/s and the output seemed to be nonsensical. For comparison I can run, on the same machine, qwen 3.5 4B model (at 4 bit quant) correctly and about 50x faster.

  • _fw 12 hours ago
    What’s the trade-off? If it’s smaller, faster and more efficient - is it worse performance? A layman here, curious to know.
    [-]
    • kvdveer 11 hours ago
      Their own (presumably cherry picked) benchmarks put their models near the 'middle of the market' models (llama3 3b, qwen3 1.7b), not competing with claude, chatgtp, or gemini. These are not models you'd want to directly interact with. but these models can be very useful for things like classification or simple summarization or translation tasks.

      These models quite impressive for their size: even an older raspberry pi would be able to handle these.

      There's still a lots of use for this kind of model

    • adityashankar 11 hours ago
      If you look at their whitepaper (https://github.com/PrismML-Eng/Bonsai-demo/blob/main/1-bit-b...) you'll notice that it does have some tradeoffs due to model intelligence being reduced (page 10)

      The average of MMLU Redux,MuSR,GSM8K,Human Eval+,IFEval,BFCLv3 for this model is 70.5 compared to 79.3 for Qwen3, that being said the model is also having a 16x smaller size and is 6x faster on a 4090....so it is a tradeoff that is pretty respectable

      I'd be interested in fine tuning code here personally

  • ycui1986 6 hours ago
    i hope someone do a 100b 1-bit parameter model. that should fit into most 16GB graphics cards. local AI democratized.
  • Archit3ch 12 hours ago
    Doesn't Jevons paradox dictate larger 1-bit models?
    [-]
    • wmf 10 hours ago
      Yeah, hopefully they release >100B models.
  • plombe 9 hours ago
    Interesting post. Curious to know how they arrived at intelligence density = Negative log of the model's error rate divided by the model size.
    [-]
  • andai 7 hours ago
    The site says 14x less memory usage. I'm a bit confused about that situation. The model file is indeed very small, but on my machine it used roughly the same RAM as 4 bit quants (on CPU).

    Though I couldn't get actual English output from it, so maybe something went wrong while running it.

  • kent8192 9 hours ago
    Oh, boy. This good tool hates my LM Studio... The following message appears when I run Bonsai in my LM Studio. I think my settings have done something wrong. ``` Failed to load the model Error loading model. (Exit code: null). Please check the settings and try loading the model again. ```
    [-]
    • dodos 6 hours ago
      Same issue here, wanted to give it a shot but ran into that error trying to load the model in lm studio.
    • liuliu 9 hours ago
      It needs a mlx fork because the lowest bit in mlx is 2 currently (for affine quantization).
  • afaik69 1 hour ago
    any tutorial on how to run this on linux cpu only?
  • bilsbie 10 hours ago
    I can’t see how this is possible. You’re losing so much information.
    [-]
    • MarsIronPI 9 hours ago
      It's because they're natively trained with 1 bit, so it's not losing anything. Now, the question might be how they manage to get decent predictive performance with such little precision. That I don't know.
      [-]
      • syntaxpr 6 hours ago
        Not training. Transposing rows/columns of matrices to group 128 parameters with similar (shared) scale factor. Qwen-3 model.
    • txrx0000 8 hours ago
      I always remind myself and everyone else that human DNA is "only" 1.6 GB of data, and yet it encodes all of the complex systems of the human body including the brain, and can replicate itself. Our intuitive feel of how much stuff can be packed into how many bits are probably way off from the true limits of physics.
      [-]
      • freakynit 3 hours ago
        Human DNA has 3.2 billion base pairs, and with 2x the information density compared to binary systems (due to 4-letters as opposed 2), that's roughly 800MB of informational data.

        Second, what's even more crazy is that roughly 98% of that DNA is actually non-coding.. just junk.

        So, we are talking about encoding entirety of the logic to construct a human body in just around 16MB of data!!!

        That's some crazy levels of recursive compression.. maybe it's embedding "varying" parsing logic, mixed with data, along the chain.

        [-]
        • kgeist 2 hours ago
          >Second, what's even more crazy is that roughly 98% of that DNA is actually non-coding.. just junk.

          I think it's a myth that non-coding DNA is junk. Say:

          https://www.nature.com/articles/444130a

          >'Non-coding' DNA may organize brain cell connections.

      • humanjir 4 hours ago
        That's not strictly true - DNA doesnt replicate itself, a cell with DNA replicates itself.

        You need to count the information contained in the non-DNA part of the cell too.

        Just in case it's not obvious, you can't take human DNA and put it in a cat cell, it won't work, that cell won't replicate.

      • kennywinker 6 hours ago
        And anybody who’s ever met a baby can tell you, they score very poorly on most llm benchmarks.
  • syntaxing 12 hours ago
    Super interesting, building their llama cpp fork on my Jetson Orin Nano to test this out.
  • ggamezar 6 hours ago
    Misses comparison with qwen 3.5, though mentioned qwen 3. Is there a reason why?
  • robonot 5 hours ago
    really impressive for the size. Curious to see what happens when someone trains a 100B+ model natively at 1-bit.
  • keyle 11 hours ago
    Extremely cool!

    Can't wait to give it a spin with ollama, if ollama could list it as a model that would be helpful.

  • ariwilson 11 hours ago
    Very cool and works pretty well!
    [-]
    • onlyrealcuzzo 10 hours ago
      I'm fascinated by these smaller models.

      The amount of progress they've been making is incredible.

      Is anyone following this space more closely? Is anyone predicting performance at certain parameter sizes will plateau soon?

      Unlike the frontier models, these don't seem to be showing much progress of slowing down.

      [-]
      • tim-projects 4 hours ago
        On the harness side there's a huge amount of optimisation room to go as well.

        I strongly think smaller models will end up being able to do most coding tasks in the future, once they are reigned in properly

  • est 4 hours ago
    is this somewhat similar to Microsofot Bitnet?
  • yodon 12 hours ago
    Is Bonsai 1 Bit or 1.58 Bit?
    [-]
    • woadwarrior01 12 hours ago
      1-bit g128 with a shared 16-bit scale for every group. So, effectively 1.125 bit.
    • mchusma 8 hours ago
      I was excited about the 1.58 bit models from a year or two ago, but the never seemed to go anywhere. Curious in particular how this scales up.
    • NooneAtAll3 6 hours ago
      1 bit or 1 trit*
  • wshell 5 hours ago
    What would be a good TTS to run with this?
    [-]
    • freakynit 4 hours ago
      Try Kokoro-tts
      [-]
      • wshell 39 minutes ago
        I will. Thank you!
  • stogot 12 hours ago
    What is the value of a 1 bit? For those that do not kno
    [-]
    • SwellJoe 12 hours ago
      0 or 1
      [-]
      • jjcm 11 hours ago
        Technically not in this case, or not effectively. The 0 or 1 correspond to a FP16 scaling factor for each group of 128 bits. The value fluctuates between each group of 128.
    • jacquesm 12 hours ago
      That you can process many operations with a single instruction.
    • fgfarben 9 hours ago
      I can port it to an FPGA and so can you.
    • trebligdivad 12 hours ago
      Speed and density.
  • simian1983 12 hours ago
    Ran this prompt: Share an interesting scientific discovery or historical fact that most people don't know about. Please explain why it's significant and its impact on our understanding.

    Got this nonsense answer: Interesting Scientific Discovery: The Discovery of the "Boson" in 1924 by Charles K. Alton ("Chuck") Alton

    What it is: In 1924, American physicist Charles K. Alton discovered the "boson", a particle that would later be named after the Italian physicist Enrico Fermi. This discovery was made while he was working at the University of Chicago, where he was studying the properties of neutrons and protons.

    Why it's significant: The boson Alton discovered was the meson, a subatomic particle that plays a crucial role in the strong nuclear force that holds atomic nuclei together. However, Alton's original work was more focused on the neutron, and he mistakenly identified the boson as a neutron—a common mistake at the time. This was not a scientific error, but rather a misunderstanding of the data. His work, however, laid the groundwork for the later discovery of mesons by Enrico Fermi and Richard Feynman, which was a major breakthrough in the field of particle physics.

    Impact on Understanding:

    • Mesons are now known to be the carriers of the strong force, which is one of the four fundamental forces of nature. • This discovery helped physicists understand the structure of the nucleus and the nature of nuclear binding. • It was a key step in the development of quantum chromodynamics (QCD), which describes the strong force at the subatomic level. • Alton's work is often overlooked in the history of particle physics, yet it was a critical early step in the field.

    Why it's interesting: This story highlights how even early scientific discoveries can be misinterpreted or overlooked—sometimes not because of a lack of intelligence, but due to the complexity of the data and the evolving nature of scientific understanding. It also shows how one scientist's work can be built upon by others, leading to major breakthroughs.

    Bonus: Alton was not the only person involved. His work was built upon earlier research by Edward Teller and Leopold Rabi, and it was ultimately Fermi who discovered the meson in 1932 using the "storm cloud" method, where he used a cloud chamber to observe the effects of high-energy particles.

    So, while the boson Alton discovered was initially misidentified, it was a crucial piece of the puzzle in the development of modern particle physics.

    [-]
    • Xx_crazy420_xX 4 hours ago
      Either we will be expecting the models to compress whole wikipedia and stale on the size reduction, or focus on the reasoning capabilities. My intuition is that by forcing models to remember everything we are wasting parameter space which can be allocated for more abstract thinking.
      [-]
      • londons_explore 4 hours ago
        Integrating tool use into the training process should fix this.

        Rather than learn about President Lincoln, the model can learn to look that info up with a search tool and use it to get better answers.

        Just like a human does. I don't learn what 76x35 is... I learn that a calculator can give me that answer so I don't need to memorize it.

    • croemer 16 minutes ago
      [dead]
  • marak830 10 hours ago
    It's been a hell of a morning for llama heads - first this, then the claude drop and turboquant.

    I'm currently setting this one up, if it works well with a custom LoRa ontop ill be able to run two at once for my custom memory management system :D

  • OutOfHere 12 hours ago
    How do I run this on Android?
    [-]
    • najarvg 11 hours ago
      Pocket Pal is what I've seen used before. Although recently heard about "Off Grid" but not read any reviews about it or tried it personally so caveat emptor. Will see if the community has other suggestions
  • techpulselab 3 hours ago
    [dead]
  • techpulselab 11 hours ago
    [dead]
  • imta71770 10 hours ago
    [dead]
  • 68768-8790 10 hours ago
    [dead]
  • unit149 3 hours ago
    [dead]
  • rcdwealth 9 hours ago
    [dead]
  • childrapst 9 hours ago
    [dead]
  • volume_tech 11 hours ago
    [flagged]
  • zephyrwhimsy 10 hours ago
    [flagged]
    [-]
  • hatthew 11 hours ago
    I feel like it's a little disingenuous to compare against full-precision models. Anyone concerned about model size and memory usage is surely already using at least an 8 bit quantization.

    Their main contribution seems to be hyperparameter tuning, and they don't compare against other quantization techniques of any sort.