← All weeks

Week of Jul 27, 2026 — Aug 2, 2026

Trending ML Papers

This week in ML

This week's most-upvoted papers cluster around one theme: making AI systems that do real work, not just answer questions. Alibaba's Qwen-UI-Agent and Frontis-MA1 both push toward autonomous agents — one for phones and desktops, one for machine-learning engineering — and both lean on massive real-world sandbox environments and self-generated training data. Moonshot's Kimi K3 sets a new bar for open-weights frontier models at nearly 3 trillion parameters, targeting the same agentic and coding workloads. NYU's AskChem attacks the reliability problem for AI that reads scientific literature by making every returned fact traceable to a source. And Metis makes an early attempt to bake long-term memory directly into a model's weights instead of relying on external databases.

Themes

Three patterns stand out. First, scale is back on the menu for open source — after months of trillion-parameter plateaus, Kimi K3 pushes to 2.8T. Second, agents are being trained, not just prompted: rather than wrapping GPT-class models in scaffolding, teams are running huge reinforcement-learning loops in real or realistic environments (phones, dev sandboxes, Kaggle-style tasks) and rewarding what actually works. Third, memory and provenance are getting first-class treatment — whether inside the model (Metis) or outside as an atomic-claim store (AskChem), the field is admitting that current 'read some retrieved documents, then generate' pipelines are not enough.

Open questions

How well do these agent gains transfer from real-device benchmarks to the actual chaos of consumers' phones, private company data, and one-off edge cases? Do native-memory approaches like Metis scale to the years-of-interactions horizons a personal assistant would need, or do they saturate at short sessions? For open frontier models like Kimi K3, does 'roughly matches the top closed labs' hold up on the harder, less-published-about tasks that actually decide product wins? And on the AI-that-builds-AI front, how quickly do systems like Frontis-MA1 start meaningfully accelerating their own training loops — is the recursive part real, or still aspirational?

  1. AskChem: Claim-Centered Infrastructure for Chemistry Literature Synthesis

    Bing Yan, Gregory Wolfe, Stefano Martiniani, Kyunghyun Cho

    What it is. AskChem is a live search system for chemistry papers that flips the usual unit of retrieval: instead of returning ranked lists of documents, it returns individual factual claims, each attached to the exact paper and quote it came from. The team broke 147,000 chemistry papers into 2.4 million small, typed claims (e.g., 'this catalyst achieved X efficiency under Y conditions') and layered a browsable taxonomy and a graph of how claims relate over the top. When a language model answers questions on top of AskChem, every citation actually resolves to a real paper, versus roughly 88% without it.

    Where it fits. This sits in the growing space of 'scientific AI assistants' — systems that help researchers and AI agents find and reason over papers. The dominant approach so far has been retrieval-augmented generation, where a model reads a few retrieved documents and writes an answer. That works, but chatbots regularly hallucinate citations and blur which fact came from which paper. AskChem is part of a wave of work pushing toward finer-grained, provenance-first retrieval, in the same spirit as tools like Elicit and Consensus but built specifically around chemistry, with an API meant for autonomous research agents to plug into.

    Why it matters. For anyone building tools that let AI 'read the literature' — pharma R&D, materials companies, science copilots — hallucinated citations are the biggest blocker to trust. Making the atomic unit a verifiable claim rather than a paragraph is a structural fix, not a prompt hack, and the paper shows it eliminates broken citations in a real deployment. The obvious limitation is that the claim graph is only as good as the LLM that extracts it; scaling this cleanly beyond chemistry, and keeping precision high on subtler claims, are still open.

    retrieval-augmented generation·scientific AI·knowledge graphs·chemistry·agents
  2. Qwen-UI-Agent Technical Report: Toward Next-Generation Real-World Centric Foundation GUI Agents

    MAI-UI Team, Alibaba Group

    What it is. Qwen-UI-Agent is Alibaba's new 'foundation model for using computers' — a single model trained to click through phone apps, drive a desktop, browse the web, and do research, all from screenshots. The big shift versus prior GUI agents is that a chunk of training happened on more than 100 real physical phones rather than simulators, and the agent can mix normal GUI clicks with command-line commands and batch several actions into one step. On a real-device mobile benchmark it hits 92% task success, edging out Claude Opus 4.8, GPT-5.6 and Gemini 3.1 Pro; it also posts strong numbers on desktop (OSWorld) and web (WebArena).

    Where it fits. GUI agents — systems that automate software by looking at the screen and pressing buttons — have been one of the most invested areas of the last year, with entries from OpenAI, Anthropic, Google, ByteDance and others. Progress has been fast on benchmarks but weak in the real world, because phones and desktops are messier than simulators (pop-ups, permission dialogs, updates, weird layouts). Alibaba's contribution is basically to industrialize the training loop: real device farms, sandbox environments running 10,000 tasks in parallel, and an 'AutoResearch' loop where the agent proposes its own training tasks and diagnoses its own failures.

    Why it matters. This is what a serious challenger to computer-use agents from OpenAI and Anthropic looks like, open enough to build on. If mobile task success rates around 90% hold up outside the benchmark, we are close to agents that can genuinely do multi-step chores on your phone — booking travel, managing subscriptions, filling forms — without a purpose-built API. The unknowns are the usual ones: safety in high-stakes actions, cost per task at scale, and how well 'proactive' behaviors (agents deciding when to act on your notifications) will land with users.

    agents·GUI agents·computer use·multimodal·reinforcement learning
  3. Kimi K3: Open Frontier Intelligence

    Kimi Team (Moonshot AI)

    What it is. Kimi K3 is Moonshot AI's new open-weights flagship: a 2.8-trillion-parameter mixture-of-experts model (an architecture where only a subset of the network — here about 104 billion parameters — activates for any given input, keeping compute manageable) with native image understanding and a one-million-token context window. The technical report describes new attention and routing tricks that make training this big model roughly 2.5x more efficient than its predecessor, plus a large reinforcement-learning phase focused on coding, agentic work, and multi-step reasoning. On benchmarks it beats every other open model tested and trails only Anthropic's Claude Fable 5 and OpenAI's GPT-5.6 Sol.

    Where it fits. The open-source frontier has, for months, felt like it was stalling at around a trillion parameters while the top closed labs kept moving. Kimi K3 is the strongest attempt yet to close that gap by pushing raw scale (nearly 3T params) at the same time as fancier reinforcement learning for reasoning and tool use. It slots alongside DeepSeek, Qwen and GLM as one of the flagship Chinese open-weights labs, and its release continues the pattern of frontier-quality models shipping with permissive weights.

    Why it matters. For product teams, an open frontier-class model changes what is buildable in-house instead of via API — private deployment, custom fine-tuning, sensitive-data workloads. Because Kimi K3 is specifically strong at agentic and coding tasks and handles a million tokens, it is directly relevant to anyone building autonomous developer tools or long-document copilots. Caveats: at 2.8T parameters, serving it is not casual, and Kimi K3 still trails the very top closed models on the hardest evals — 'frontier-adjacent' rather than truly at the top.

    large language models·mixture-of-experts·open source·long context·agents
  4. Metis: Memory Foundation Model

    Zeyu Zhang, Ziliang Guo, Yihang Sun, Xichong Zhang +13 more

    What it is. Today, when an AI assistant 'remembers' things about you, that memory usually lives in an external database that the model looks up before answering — a bolt-on system, not part of the model itself. Metis is an early prototype of a different design: memory is baked directly into the model's own weights, which quietly update themselves as the model processes new information, no separate retrieval step required. At inference time the underlying model stays frozen, but a small set of internal 'memory state' parameters shifts on each interaction, letting the model carry information forward.

    Where it fits. Long-term memory has been a persistent weak spot for AI agents. The industry standard — retrieval-augmented generation over a vector database — works but adds latency, is hard to train end-to-end, and often fails to surface the right facts. Metis is part of a growing thread of work (alongside 'fast weights', various state-space models, and the also-trending Memory Decoder paper from this same week) that asks: what if the model just remembered natively, the way it already knows grammar? The framing of a 'memory foundation model' is new, but the ambition mirrors what has happened with reasoning — once bolted on as chain-of-thought prompts, now trained directly into the model.

    Why it matters. If native memory works reliably, personal assistants and long-running agents stop being tied to fragile databases and prompt tricks, and update themselves as they go. That could simplify architectures and cut inference cost for anyone building companion apps, customer support bots, or multi-session copilots. The team is honest that Metis still degrades on truly long-horizon tasks and can confuse similar facts — this is a first prototype pointing at a direction, not a shipped product.

    memory·foundation models·agents·architecture·personalization
  5. Frontis-MA1: Training an AI4AI Model towards Recursive Self-Improvement in Machine Learning Engineering

    Junlin Yang, Che Jiang, Kaiyan Zhang, Horizon Research (Frontis.AI, Tsinghua University)

    What it is. Frontis-MA1 is a 35-billion-parameter AI system trained specifically to do machine-learning engineering work: given a dataset and a problem, it writes, runs and improves ML code the way a human data scientist would, iterating over failed experiments. The team pairs it with an open 'stack' called OpenMLE that provides training tasks, execution sandboxes and a search loop that lets many candidate solutions evolve. On the standard MLE-Bench Lite (competitive ML problems) it earns medals on 71% of tasks under a strict single-GPU, 12-hour budget — matching or beating far larger closed models like GPT-5.6 Sol and the 2.8T Kimi K3.

    Where it fits. This is a concrete attempt at what people mean by 'AI that builds AI' or 'AutoML on steroids' — a specific slice of the broader idea of recursive self-improvement, where AI systems help improve the process of making AI systems. Prior work in this space (Sakana AI's 'AI Scientist', DeepMind's AlphaEvolve, MLE-Bench itself from OpenAI) has mostly wrapped very large frontier models in agent scaffolding. What is different here is that the model itself is trained end-to-end on execution feedback around four atomic operations — Draft, Improve, Debug, Crossover — rather than relying on prompt engineering around GPT-class models.

    Why it matters. For teams that ship ML models, an agent that can crank through dataset preparation, model tuning and debugging on a single GPU is directly interesting — it is the closest thing yet to an automated junior ML engineer that runs cheaply. The bigger, more speculative story is what happens when a system like this is turned inward to improve the training of its own successor. Frontis-MA1 does not claim it has crossed that threshold, but it makes recursive self-improvement in ML engineering a measurable engineering problem rather than a thought experiment. Open questions: whether it generalizes beyond ML competitions to messy real-world data pipelines, and how quickly evaluation benchmarks will start to saturate.

    autoML·agents·reinforcement learning·code generation·AI4AI