Falcon-Edge: A series of powerful, universal, fine-tunable 1.58bit language models.
Hugging Face
TII released Falcon-Edge, 1B and 3B models trained in ternary (1.58-bit) format that are actually fine-tunable, not just inference-only. One training run spits out full-precision, native BitNet, and pre-quantized versions together.
Based on reporting by Hugging Face — read the original for the full story.
Summary, retelling and take written by AI under human oversight; images are AI-generated illustrations. How we work · Report an error
TII's Falcon-Edge project tackles a problem that's quietly annoyed everyone working on BitNet models: you could shrink them, but you couldn't really touch them afterward. Once a model gets quantized down to ternary weights of -1, 0, and 1, it typically becomes a frozen artifact good only for inference. Falcon-Edge breaks that pattern by building fine-tunability into the pre-training process itself, so a single ~1.5 trillion token training run on TII's internal data mixture produces three usable outputs at once: a standard bfloat16 model, a native BitNet checkpoint, and a pre-quantized variant specifically shaped for further tuning.
The technical trick is simpler than it sounds. BitNet's inference math already quantizes activations to int8 and rescales them back, which the team realized creates a decent approximation of the original weights if you inject the weight scale after quantization rather than adjusting weights post-training the usual way. Run that logic end-to-end on the 1B and 3B base models and the bfloat16 versions hold up close to their unquantized cousins on the old Hugging Face leaderboard v2 benchmarks, beating or matching similarly sized models. That's the headline claim: ternary training doesn't have to mean giving up competitive performance, and it doesn't have to mean giving up flexibility either.
To make the fine-tuning story real rather than theoretical, TII shipped onebitllms, a small Python package that plugs into existing tools like Hugging Face's trl library. It converts prequantized checkpoints into a trainable BitNet format, hands them off to standard fine-tuning pipelines, and quantizes the result back down afterward. Right now only full fine-tuning works — no LoRA or other parameter-efficient methods yet — which the team openly flags as an unsolved problem worth chasing, especially once BitNet models grow past the 1B-3B range where full fine-tuning gets expensive fast.```)
What's notable here isn't just the models themselves but TII being upfront about the rough edges. They estimate roughly 20% training overhead versus standard bfloat16 pretraining, they haven't fully closed the performance gap between the ternary checkpoint and its float counterpart, and GPU inference kernels for BitNet still lag behind what's possible on CPU via projects like bitnet.cpp. None of that undercuts the release — it's genuinely useful groundwork — but it reads more like a research checkpoint than a finished product, with multi-modal BitNet models and better GPU kernels explicitly on the wishlist rather than delivered.
My take — AI-written commentary, not fact-checked reporting
I like that TII shipped the messy, unfinished parts alongside the impressive numbers instead of just declaring victory — that's rarer than it should be in this space. Ternary models fine-tunable by ordinary people is a genuinely useful direction for anyone who cares about running capable models outside a hyperscaler's GPU cluster, and it fits nicely with Europe's push to not be totally dependent on US and Chinese labs for edge AI infrastructure. The lack of PEFT support is the real bottleneck though, and until someone solves that, 'fine-tunable BitNet' mostly means 'fine-tunable if you have serious compute,' which is a narrower club than the pitch suggests.
Read more about this at: Hugging Face