Tiny Recursive Models: A tiny 7M parameter model that... recursively refines its answer beats LLMs 100x larger on hard puzzles like ARC-AGI We independently reproduced the paper, corroborated results, and released the weights + API access for those looking to benchmark it 🔍show more

alphaXiv
52,395 görüntüleme • 8 ay önce
STARBOY perceives its environment through a camera, microphone, temperature... sensor, and accelerometer. We trained multiple tiny image models that run locally on the device, letting it recognize human faces and hand gestures.show more

Daniel Kuntz
115,240 görüntüleme • 4 ay önce
We just shipped support for tool use and JSON... mode for DeepSeek R1 Distil-Llama 70B on Groq Inc. 🛠️ The coolest part is that our API now has a `reasoning_format` parameter that lets you control how the model outputs its thought process.show more

Hatice Ozen
43,225 görüntüleme • 1 yıl önce
LongWriter Unleashing 10,000+ Word Generation from Long Context LLMs... discuss: Current long context large language models (LLMs) can process inputs up to 100,000 tokens, yet struggle to generate outputs exceeding even a modest length of 2,000 words. Through controlled experiments, we find that the model's effective generation length is inherently bounded by the sample it has seen during supervised fine-tuning (SFT). In other words, their output limitation is due to the scarcity of long-output examples in existing SFT datasets. To address this, we introduce AgentWrite, an agent-based pipeline that decomposes ultra-long generation tasks into subtasks, enabling off-the-shelf LLMs to generate coherent outputs exceeding 20,000 words. Leveraging AgentWrite, we construct LongWriter-6k, a dataset containing 6,000 SFT data with output lengths ranging from 2k to 32k words. By incorporating this dataset into model training, we successfully scale the output length of existing models to over 10,000 words while maintaining output quality. We also develop LongBench-Write, a comprehensive benchmark for evaluating ultra-long generation capabilities. Our 9B parameter model, further improved through DPO, achieves state-of-the-art performance on this benchmark, surpassing even much larger proprietary models. In general, our work demonstrates that existing long context LLM already possesses the potential for a larger output window--all you need is data with extended output during model alignment to unlock this capability.show more

AK
50,995 görüntüleme • 1 yıl önce
Average US AI lab: > builds the strongest model... > gets scared of its own model > spends months arguing about safety > fights other AI labs over who has the strongest model > delays the release for more safety testing > regulators ask for even more safety > switches users to a dumber model > keeps it closed source Average Chinese AI lab: > trains Kimi K3 > builds a 2.8T parameter monster > gives it a 1M context window > beats GPT-5.6 and Claude Fable 5 on some tasks > open-sources the weights > publishes the architecture > refuses to elaborate > leavesshow more

Tornado guy
155,725 görüntüleme • 2 gün önce
Microsoft made 100B parameter models run on a single... CPU. bitnet.cpp: The official inference framework for 1-bit LLMs. The math behind 1-bit LLMs is what makes them revolutionary. Traditional LLMs use 16-bit floating point weights. Every parameter is a number like 0.0023847 or -1.4729. When you run inference, you multiply these floats together. Billions of times. That's why you need GPUs, they're optimized for floating point matrix multiplication. BitNet b1.58 uses ternary weights: {-1, 0, 1}. That's not a simplification. That's a fundamental change in the math. When your weights are only -1, 0, or 1: → Multiply by 1 = keep the value → Multiply by -1 = flip the sign → Multiply by 0 = skip entirely Matrix multiplication becomes addition and subtraction. No floating point operations. No GPU required. This is why bitnet.cpp achieves: → 2.37x to 6.17x speedup on x86 CPUs → 1.37x to 5.07x speedup on ARM CPUs → 71.9% to 82.2% energy reduction on x86 → 55.4% to 70.0% energy reduction on ARM The speedups scale with model size. Larger models see bigger gains because there are more operations to simplify. A 100B parameter model running at human reading speed (5-7 tokens/second) on a single CPU. That's not optimization. That's a different paradigm. Why 1.58 bits? Because log₂(3) ≈ 1.58. Three possible values = 1.58 bits of information per weight. The key insight: These models aren't quantized after training. They're trained from scratch with ternary weights. The model learns to work within the constraint. No precision loss. No quality tradeoff.show more

Tech with Mak
23,036 görüntüleme • 3 ay önce
its the way snghwa only said “that looks good”... and hngjng immediately started scanning through the menu looking for the mussels and asked snghwa if he would like it….. to be loved is to be noticed and cared for quietly….. (also snghwa’s tiny nods) 🥺🥺🥺show more

sankitty
18,028 görüntüleme • 1 yıl önce
Today, we are releasing Stable Video Diffusion, our first... foundation model for generative AI video based on the image model, Stable Diffusion. As part of this research preview, the code, weights, and research paper are now available. Additionally, today you can sign up for our waitlist to access a new upcoming web experience featuring a Text-To-Video interface. To access the model & sign up for our waitlist, visit our website here:show more

Stability AI
1,024,498 görüntüleme • 2 yıl önce
🚀 Self-speculation brings 6.75x real speedup for LLM generation... with SGLang inference! Same model drafts future tokens in Diffusion mode → then verifies them in AR (causal) mode. One model and one KV cache. Just different attention masks. Thanks to perfect alignment, we get 2× longer acceptance lengths than MTP techniques (Eagle-3, MTP, dFlash). We run 2 forward passes… but the 2× higher acceptance means we break even - and with zero overhead from extra drafter, KV cache, or LM head that comes with MTP - those are not free. Last week we released Nemotron-Labs-Diffusion + Tri-mode LLMs! We did continued pre-training on Ministral-3 models by switching attention patterns (block causal bidirectional). Result: one model that runs AR mode, Diffusion mode, and Self-Speculation. Diffusion mode already shows high benchmark accuracy - excited to see what happens when someone beats left-to-right acceptance! 🔥 Github: Paper: SGLang inference: Try the models on HF:show more

Pavlo Molchanov
66,519 görüntüleme • 1 ay önce
I'll always root for a team that open-sources its... best work, and Robbyant just did it properly. Robbyant, Ant Group's embodied-AI company, released LingBot-Vision, a vision foundation model for robots, and the part I love is the data. They trained it on 161M images, filtered down from 2B raw ones and mostly pulled straight from the open web, with no human labels, no edge detectors, no depth sensors anywhere in the loop. It learns the exact edges of objects from raw pixels. That's roughly a tenth of the data DINOv3 saw, and under a third of the training. And it shows in the results. On depth, working out how far away things are, the 1B model edges out a 7B on NYU-Depth. It also powers LingBot-Depth 2.0, which reads the surfaces cameras usually choke on, glass and mirrors, and halves indoor depth error. LingBot-Vision is fully open. Weights from the 1.1B flagship down to a tiny 21M version, code, and the paper. This is the timeline I want more of. Robbyantshow more

Chubby♨️
48,249 görüntüleme • 10 gün önce
Most recent diffusion language model research (that I’ve seen)... seems to be using masking as the noising process. It looks like, however, most closed-source models (Google Gemini Diffusion and possibly Inception Labs’ Mercury) use a different noising process, where instead of masking tokens, they replace them with different tokens (either with a random token or a semantically similar token). I wondered how they were getting such high throughput with the latter noising process, since I believed that optimizing inference with KVCache approximation would be more difficult (for various reasons). I visualized this noising process with tiny-diffusion and compared it to normal unmasking, and was very surprised to see how fast the generation “settles” into a reasonable output, and then only slightly refines afterwards, requiring much fewer steps in total. Unmasking (where tokens are never remasked, the typical implementation) is inherently limited in generation speed by the fact that an increase in tokens decoded per step leads to more errors due to the mismatch between individual and marginal token probability distributions we sample from. The token replacement noising process seems to have a much different set of characteristics. Because we sample each token per step, every token makes “progress” towards the final output each iteration (in addition to *potentially* giving other tokens more information in future steps). Generally, masking has outperformed other noising processes, which is probably why most research focused on it (using smaller models). But the paper referred to in the retweet shows that random replacement as a noising process may scale better as model size increases. Big labs might have noticed these results much earlier (due to having drastically more training resources and being able to test larger models), which may explain the discrepancy in the choice of noising process. I’m gonna test this with larger models, since tiny-diffusion only has 10M parameters.show more

nathan (in sf)
40,440 görüntüleme • 6 ay önce
We released physics-intern: a simple harness for science problems!... It gets models like Gemini 3.1 Pro to go from 17.7 -> 31.4, thus beating GPT 5.5 Pro. The physics-intern harness can wrap any model and via dedicated subagent boost the performance of the vanilla reasoning models. While I think more and more of these harness capability gains will be absorbed into the models (like prompting tricks disappeared over time) there is a lot to be gained right now by building good scaffolds for those models and integrating tools well. Interestingly, the exception we found that GPT 5.5 Pro actually didn't benefit from the physics-intern harness! Read more about it here: PS: I think the Harness[Model] notation is kind of nice.show more

Leandro von Werra
97,181 görüntüleme • 1 ay önce
Many of you asked for code & weights for... π₀, we are happy to announce that we are releasing π₀ and pre-trained checkpoints in our new openpi repository! We tested the model on a few public robots, and we include code for you to fine-tune it yourself.show more

Physical Intelligence
441,382 görüntüleme • 1 yıl önce
I was looking for a cheaper way to test... Seedance 2.0. Then I found ToAPIs It gives access to AI models like gpt image 2, Seedance, Kling, and more through one API gateway — with selected models up to 80% cheaper. Seedance 2.0 starts at around $0.06/s for 720p! The best part? Pay as you go. No subscription.show more

MrDejie
27,346 görüntüleme • 25 gün önce
Sora 2, “ family guy dark humor” My personal... thoughts: This is clearly the best AI video model for replicating animated shows. This truly gives credence to the fact that within the decade AI generated short films/shows is looking like a real possibility. My important caveats. Model trained only on video can get visually indistinguishable for most viewers most of the time. It can match texture, lighting, motion, and camera language so well that only careful inspection gives it away. However For sustained quality at the level of a full scene or an episode, video alone hits a ceiling IMO. Pure video likelihood drives the model toward what is frequent, not toward the rare timing and payoff choices that make the best jokes land. It has weak grasp of long arc causality, character memory, and joke structure. It also does not see intent, off screen context, or prosody unless you give it those signals. So you get something that looks right but drifts on beats that matter. I don’t know what the potential solution would be other than to have an AGI just animate the show for me. Any others ? Credit for the sora clip: figureshow more

Chris
150,286 görüntüleme • 9 ay önce
Hey influencers! 🌻✨ Do you love puzzles, exploration and... plants? Together with Streamers Connected we are looking for streamers and content creators that would like to play Botany Manor a little ahead of its release! Feel free to share and retweet, more details in the tweet below 👇show more

Botany Manor
27,587 görüntüleme • 2 yıl önce
The recent Massachusetts Institute of Technology (MIT) CSAIL paper... published on Recursive Language Models is a fascinating look into how AI systems reason in 2026. You can check it out here ➡️ → The paper notes that even frontier models suffer from “context rot” as inputs grow longer. More tokens don’t mean more understanding. Instead of compressing or summarising, RLMs “treat long prompts as part of an external environment” …and let the model programmatically inspect, decompose, and recursively requery itself over precise sections. This matters in Web3. Why? Smart contracts are long, stateful, and brittle. One missed assumption = unnecessary hassle. In the video below, we applied RLM principles to improve the prompt shown. The old prompt would try to force multi-step pauses. Therefore breaking the AI's workflow. Now it decomposes requirements, scores confidence for each component, verifies the logic, and then synthesises. Result = Production-ready contracts with flagged risks, not blind single-pass outputs. Try it out with our Smart Contract Generator today!show more

ChainGPT
82,385 görüntüleme • 5 ay önce
Building on the previous paper, in this study we... compare a continuous “smooth return” S2>S1 model with an event-driven one, where long periods of relative calm are punctuated by short, intense episodes of global reorganisation. Both models cover the same time window. Neither uses archaeological data in its construction. When compared against where early humans and early civilizations actually appear and persist, the difference is statistically robust. The smooth model behaves like background noise. The event-driven model lines up in time and space far better than chance allows, even after aggressive temporal and spatial randomization tests. Statistically, the event-driven model lines up with where and when early civilizations appear far better than a smooth, continuous model, even after we randomize both timing and location to test what could arise by chance. The event timeline itself was built independently from well-known late-glacial disruptions - such as Heinrich events, meltwater pulses, and abrupt deglacial transitions - rather than from any archaeological data. Nothing here claims that specific events caused specific cultures. It does suggest that history may not unfold on a smooth clock. Human societies seem to flourish during recovery phases between disruptions, not during the disruptions themselves. The animation contrasts the two return models. Draft paper : Source & Results : (coming soon)show more

Craig Stone
10,899 görüntüleme • 5 ay önce
AI listens to everyone. Except for 5.5 billion people.... We’re launching BRIDGE (Benchmark of Regional & International Data for Global Evaluation), the first independent Global South ASR benchmark. 22 regional languages across 15 models evaluated on a first-of-its-kind 7-metric stack. Read the full benchmark here: Most ASR benchmarks report one WER per model per language. That number hides more than it reveals. Dialect variation, code-switching fidelity, speaker overlap and script-mismatch all sit underneath it. BRIDGE surfaces them. Here’s how 🧵show more

Humyn Labs
30,996 görüntüleme • 2 ay önce
How much better are the internal, unreleased models at... frontier labs like Google, OpenAI, and Anthropic? We got a glimpse exactly one year ago today, when Google accidentally leaked the “Kingfall” model "Kingfall" was likely an unreleased Gemini 2.5 Ultra-sized model. It was available in AI Studio for only a few minutes but remained accessible through the API for several days At the time, "Kingfall" appeared to be significantly better than Gemini 2.5 Pro at both code generation and creative writing In a recent interview, Sundar Pichai mentioned that Google could have made a better, Ultra-sized Gemini Omni model, but would have had trouble serving it The infrastructure required to serve Ultra-sized models at scale is likely why Google never publicly released models like “Kingfall”show more

AiBattle
12,010 görüntüleme • 1 ay önce