惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
U
Unit 42
B
Blog RSS Feed
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
腾讯CDC
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
博客园 - 聂微东
MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI/ML Research Digest — May 23, 2026
Papers Mache · 2026-06-01 · via DEV Community

Papers Mache

Extreme KV‑Cache Compression and Long‑Context Efficiency

Static quantization is giving way to rotation‑based and context‑sensitive schemes. OCTOPUS and OScaR reach near‑lossless INT2 performance while cutting cache size dramatically [1], [2]. Sparse token indexers replace dense caches with a searchable sketch, preserving attention fidelity at lower memory cost [3]. Linear‑attention decoupling splits the KV stream into a short‑term mutable part and a long‑term static part, keeping long‑context reasoning accurate without quadratic growth [4]. Together these ideas let models handle thousands of tokens on modest hardware, a bottleneck for many retrieval‑augmented and multilingual applications.

Verifiable Rewards for LLM Reasoning

RL from verifiable rewards (RLVR) refines policy updates with token‑level credit signals rather than the coarse GRPO baseline. Discriminative token weighting assigns higher reward to correct intermediate steps, improving math and code accuracy [5]. Subproblem‑level curriculum learning breaks hard problems into tractable pieces, letting the model earn rewards incrementally and generalize to unseen compositions [6]. The result is a measurable boost in exact solution rates on benchmark suites that require multi‑step reasoning.

Unified Generative Frameworks for 3D Geometry

Vision‑language models are now paired with explicit geometric primitives to output simulation‑ready assets. UniT’s Group Autoregressive Transformer treats points, lines, and surfaces as a single token stream, enabling end‑to‑end generation of metric‑scale scenes [7]. A separate line of work injects 4‑dimensional Gaussian splatting into the pipeline, turning raw sensor streams into dense, temporally coherent reconstructions suitable for downstream physics simulators [8]. This unifies perception and asset creation, reducing the manual modeling effort that has long limited virtual world construction.

Standout Papers

Muon Optimizer for Spectral Capacity – Muon replaces AdamW and scales the spectral capacity of feed‑forward layers linearly with model size, yielding higher expressive power without extra parameters [9]. The finding shows that optimizer design can directly shape internal representations, a lever not fully explored in transformer research.

TerminalWorld for Authentic Agent Evaluation – TerminalWorld provides a massive, automatically curated benchmark of command‑line tasks that mimic real developer workflows. Even the best agent tops out at a 62.5 % pass rate, revealing a gap between lab‑scale success and practical usability [10].

WavFlow Raw Waveform Generation – WavFlow discards latent encoders and generates audio directly from waveform patches using flow‑matching. The model achieves high‑fidelity synthesis comparable to diffusion baselines, questioning whether semantic‑acoustic bottlenecks are necessary for high‑quality audio generation [11].

Other Notable Details

Observable‑Read Isolation in Agent Pipelines – An HTTP middleware that logs deliveries enforces Observable‑Read Isolation, eliminating structural race conditions in multi‑step agents without touching the agents’ core code [12].

Matérn Process for Mesh Flow Matching – Introducing a triangulation‑agnostic Matérn‑process noise model allows flow‑matching generators to produce meshes with millions of triangles, breaking the diversity ceiling of prior mesh synthesis methods [13].

FlowLong – Overlapping sliding windows combined with Tweedie matching extend the generation horizon of autoregressive video diffusion for free. The technique preserves temporal coherence across arbitrarily long sequences, a known weakness of standard diffusion models [14].

References

  1. OCTOPUS: Optimized KV Cache for Transformers via Octahedral Parametrization Under optimal Squared error quantization
  2. OScaR: The Occam's Razor for Extreme KV Cache Quantization in LLMs and Beyond
  3. Full Attention Strikes Back: Transferring Full Attention into Sparse within Hundred Training Steps
  4. Gated DeltaNet-2: Decoupling Erase and Write in Linear Attention
  5. DelTA: Discriminative Token Credit Assignment for Reinforcement Learning from Verifiable Rewards
  6. From Reasoning Chains to Verifiable Subproblems: Curriculum Reinforcement Learning Enables Credit Assignment for LLM Reasoning
  7. UniT: Unified Geometry Learning with Group Autoregressive Transformer
  8. Sensor2Sensor: Cross-Embodiment Sensor Conversion for Autonomous Driving
  9. Same Architecture, Different Capacity: Optimizer-Induced Spectral Scaling Laws
  10. TerminalWorld: Benchmarking Agents on Real-World Terminal Tasks
  11. WavFlow: Audio Generation in Waveform Space
  12. S-Bus: Automatic Read-Set Reconstruction for Multi-Agent LLM State Coordination
  13. Matérn Noise for Triangulation-Agnostic Flow Matching on Meshes
  14. FlowLong: Inference-time Long Video Generation via Manifold-constrained Tweedie Matching