I've been working on a project that started with what I thought was a transformer problem. People usually talk about attention sinks, representation collapse, low-rank activations, weird key norm distributions, etc. as separate attention pathologies that need separate fixes. I don't think they're actually about attention. I think they're what any content-based router does when it's making decisions with a similarity metric that's blind to magnitude. The observation that kicked this off is surprisingly simple. You can rewrite softmax attention as a Boltzmann distribution over Euclidean distances only if all the keys have the same norm. Expanding the distance, ||q-k||² = ||q||² - 2 + ||k||² The query norm disappears inside the softmax. The key norm also disappears, but only when every key has roughly the same magnitude. Standard attention just throws the key norm term away regardless. That means it's routing using a metric that can't "see" key magnitude. Once I started looking for that assumption in real models, it was violated basically everywhere. My hypothesis became: If your routing metric is blind to magnitude, the model has to compensate somehow. And that compensation consistently shows up as: routing concentrating onto a few positions, representations collapsing into a low-rank subspace, key norms becoming highly stratified. Those aren't three unrelated phenomena, hey're different symptoms of the same geometry. The cool part is that it isn't just transformers. I looked at five different routing mechanisms. Transformers: 9 pretrained models (GPT-2 Small → XL, Pythia 160M → 2.8B). Every single one develops the same signature. GATs: Compared graph attention against depth/width-matched GCNs on three heterophilic WebKB graphs. The attention models collapse more than the fixed-aggregation controls. Mamba: No explicit attention here, but you can reconstruct the hidden routing operator. The effective "key" ends up being Δ·B. If I freeze Δ while keeping everything else fixed, the concentration almost completely disappears. So the selective routing is what's creating the effect. RWKV: This one surprised me. If I sweep the learned time decay, the depth where concentration starts shifts dramatically. Strong decay delays it, weak decay makes it happen much earlier. So the decay acts like a positional brake sitting on top of the same content attractor. AttnRes (Qwen3 variant): Probably my favorite result. It routes over depth instead of tokens, and its keys are RMS-normalized, so key norm variation is literally zero by construction. It still develops strong routing hubs. That was the moment where I stopped thinking norm stratification was the cause. It's just one way a router can compensate. Across all of these architectures, what changes isn't whether collapse happens, but when and how strongly. Those seem to be controlled mostly by whatever positional bias or decay mechanism the architecture already has (RoPE, time decay, recency bias, etc.). The paper is about 20 pages including the appendix. It has the measurement details, null baselines, causal ablations, retraining controls, and some converging evidence from recent work (AttnRes, QKV sharing, memory caching, etc.). I'd love feedback, especially from people who've worked on attention, state-space models, or graph transformers. Code: https://github.com/parzi-val/all-routes-lead-to-collapse Paper: https://arxiv.org/abs/2606.22325 submitted by /u/entropy_- [link] [Kommentare]
This monthly chart shows the 4 year cycle for btc and probably for most altcoins, resistance for top till now is a straight line, 2025 peak was perfect aligned with 2017/2021 peaks and surprisingly the support line is actually a curve going upward?, bottom points being 2018, 2022 and 2026 towards end of year. From chart a 30% drop may come with a solid floor of 40-45k$ (oct/nov). So a possible monthly bearflag may appear to mirror the bullflag. From resistance line the top for next cycle is 2029 with 180k$ and a possible drop to 70k$ in the upcoming year. Not sure how relevant this chart is but keep in mind this possible scenario:). Also dont know how AI bubble will affect the cycle. submitted by /u/JiZhangYue [link] [Kommentare]
Zedra is a remote control for AI coding agents with terminal, editor, markdown, and git. Pair by QR for a direct, secure tunnel. No VPN or port forwarding.
GTA6 might be an outlier, though—at least for now.
93% of organizations report infrastructure incidents attributable to AI
Sätteri puts flexible JavaScript plugins on top of a fast Rust Markdown / MDX engine. Best of both worlds.
My client needs to pay me but since i don't have paypal in my country, we're going with crypto. Does exchanges allow immediate withdrawal after buying the crypto? For context the account will have to be created first, and client can do kyc but i need the payment on the same day preferably. I heard there's a cooling period or withdrawal hold in most exchanges. The client is in germany. We both have no experience with crypto. submitted by /u/Intelligent_Arm_4220 [link] [Kommentare]
Hi, I've created an overview of the most important OCR benchmarks, along with the top open models, and links to their paper and code: https://paperswithcode.co/tasks/ocr. This week, new OCR models were released by Baidu and Mistral. Baidu released Unlimited OCR, a 3B-parameter model that introduces a key innovation called Reference Sliding Window Attention (R-SWA) and builds on top of DeepSeek OCR. Mistral released OCR 4, which is available via an API. OCR, or Optical-Character Recognition, is the task of digitizing PDFs or scanned documents. There's, of course, a huge interest in this task, as it enables ingestion of all company data for agentic use cases. AI agents love Markdown; it can be valuable to turn all those messy PDF documents into a standardized, machine-readable format. This enables use cases like agentic RAG (retrieval-augmented generation), which powers chatbots, both internally and for external customer support. With a large number of OCR releases on Hugging Face over the last few months, it may be hard to know which one to use. Hence, I've built this page, which lists the major OCR benchmarks, along with the top-performing models and links to their code. This is obviously made available on Papers with Code, the website I'm maintaining (it's a revival of the old website, which was taken down). The top recommended benchmarks are OlmOCRBench, created by Ai2, and OmniDocBench, created by Shanghai AI Laboratory. Current top recommendations are Chandra OCR 2 by Datalab and Mistral OCR v4. The former is openly available, hence you can either self-host it or use their serverless API. Let me know which other tasks you want to see major benchmarks for now! Cheers, Niels open-source @ HF submitted by /u/NielsRogge [link] [Kommentare]