AI News HubLIVE
Original source7 min read

Together AI at ICML 2026: Frontier Research Across the Full Stack

Eight papers from Together AI accepted to ICML 2026, covering the full AI stack from agents to GPU kernels. These research works are integrated into the Together platform and already benefit production workloads.

All blog posts

Research

Published 6/30/2026

Together AI at ICML 2026: frontier research across the full stack

Eight papers from Together AI and our peers were accepted to ICML 2026 in Seoul. If you are attending come by booth B714. We’d love to connect.

Authors

Together Research

Table of contents

40+ Models Chosen for Production...40+ Models Chosen for Production...40+ Models Chosen for Production...

Links in this article

DSGym paper

ThunderAgent paper

TTT-Discover paper

RARO paper

V1 paper

Aurora paper

Untied Ulysses paper

Opportunistic Expert Activation paper

Eight papers is a lot to take in as a list. The better way to read them is by where they sit in the stack. Frontier AI is not built at a single layer. It is the product of research that runs from the agent down to the GPU kernel, and a gain at any one layer is wasted if the layers around it cannot keep up.

This is at the core of how we work. From frontier agents at the top to kernels at the bottom, our research touches each one, and each layer feeds the next. The research becomes part of the Together platform, and the production workloads running on that platform point us to the next research problem. Aurora, our ICML paper on adaptive speculative decoding, is a clear example: the same line of work ships today as our ATLAS speculator in production.

Here is this year's work, layer by layer, top down.

01Frontier agents

The top of the stack: agents that do real work, measured honestly.

DSGym1,000+ tasks

ThunderAgentup to 3.6×

TTT-DiscoverBeats best human

02Model shaping

How you train and shape a model: reasoning, fine-tuning, and RL.

RARO25% vs 5.9%

V1+10%

03Algorithmic optimizations

Making the math of inference cheaper: speculative decoding, quantization.

Aurora1.25× as traffic shifts

04Systems optimizations

The systems that train and serve: batching, scheduling, context parallelism.

Untied Ulysses5M tokens

OEAup to 39%

05Kernels

The foundation: the GPU kernels everything above runs on.

No new ICML paper at this layer this year, but it is core to the same flywheel. You can read about our kernels research work on the Together blog.

Frontier agents

The top of the stack: building agents that do real work, and measuring them honestly.

Paper 1

DSGym: A Holistic Framework for Evaluating and Training Data Science Agents

1,000+ tasks

10+ domains, one API

More than 100 data-science tasks across 10+ domains, unified behind a single evaluation and training API.  Data-science agents have been hard to measure fairly, every benchmark has its own interface and many of their tasks can be solved without ever opening the data. DSGym standardizes the measurement and closes that loophole.

It puts diverse evaluation suites behind one API with shared abstractions for datasets, agents, and metrics, and runs each task in a self-contained execution environment where the agent has to work with the data rather than recall an answer. On top of the refined existing suites, it adds 90 expert bioinformatics tasks grounded in academic literature and 92 end-to-end Kaggle-style modeling competitions. The same environment then runs in reverse as a training engine: trajectory generation and synthetic query pipelines produce execution-verified data, which we used to train a 4B model into a state-of-the-art open-source data-science agent, with no human labeling. Evaluate honestly, synthesize from the same harness, fine-tune, re-evaluate, all in one framework.

Authors: Fan Nie, Junlin Wang, Harper Hua, Federico Bianchi, Yongchan Kwon, Zhenting Qi, Owen Queen, Shang Zhu, James Zou. With collaborators at Stanford, Duke, and Harvard.

Paper: arXiv:2601.16344

Paper 2

ThunderAgent: A Simple, Fast and Program-Aware Agentic Inference System

up to 3.6×

agent throughput

Achieving 1.5 to 3.6x higher serving throughput for agent workloads, with three lines of code to adopt. Parallel agent workloads stop collapsing under load, and the fix is not a faster model.

The problem is the inference engine has no idea it is running an agent. It treats each step of a multi-turn workflow as an isolated request, inflating latency by up to 7.14x under load. ThunderAgent makes the workflow itself a first-class object the scheduler can reason about end to end. Alongside the throughput gain, it delivers 1.8 to 3.9x faster RL rollouts and up to 4.2x disk savings over state-of-the-art systems.

Authors: Hao Kang, Ziyang Li, Xinyu Yang, Weili Xu, Yinfang Chen, Junxiong Wang, Beidi Chen, Tushar Krishna, Chenfeng Xu, Simran Arora. With collaborators at Georgia Tech, CMU, and UIUC.

Paper: arXiv:2602.13692

Paper 3

Learning to Discover at Test Time (TTT-Discover)

Beats best human

open model, ~$500

State-of-the-art discoveries across four fields, mathematics, GPU kernels, competitive algorithms, and biology, all with open models. Every prior result at this level relied on closed frontier models behind an API you cannot inspect or run. TTT-Discover reaches it with an open 120B model and one unchanged method, for a few hundred dollars per problem.

The usual recipe for AI discovery is search: prompt a frozen model thousands of times and keep the best sample. TTT-Discover instead runs reinforcement learning at test time on the single problem in front of it, so every attempt becomes training data for the next one and the model improves as it works, and with the same sampling budget plain best-of-N never catches up. The same setup, unchanged, set a tighter bound on a 60-year-old Erdős problem in mathematics (past the previous AI record, which used closed models), discovered a GPU kernel faster than the best prior submission on the GPUMode leaderboard, produced a first-place-level finish on a competitive-programming contest, and set a new high on a single-cell denoising benchmark in biology, all on the open gpt-oss-120b. The code and the record-setting kernels are public.

Authors: Mert Yuksekgonul, Daniel Koceja, Xinhao Li, Federico Bianchi, Jed McCaleb, Xiaolong Wang, Jan Kautz, Yejin Choi, James Zou, Carlos Guestrin, Yu Sun. With collaborators at Stanford, NVIDIA, UC San Diego, and the Astera Institute.

Paper: arXiv:2601.16175

Model shaping

How you train and shape a model: reasoning, fine-tuning, and reinforcement learning.

Paper 4

Escaping the Verifier: Learning to Reason via Demonstrations (RARO)

25% vs 5.9%

vs experts · no verifier

A 25% win rate against expert responses, versus 5.9% for supervised fine-tuning, with no verifier at all.  You can get RL-grade reasoning on tasks that have no checker, like poetry writing or financial analysis, not just math and code.

RL-based reasoning normally assumes a verifier that can score correctness. RARO (Relativistic Adversarial Reasoning Optimization) replaces it with an adversarial game: one model acts both as a policy that produces expert-quality answers and as a relativistic critic, which learns to pick a better response of the two. Pairwise comparison with a tie option is key for training stability. On Countdown, RARO reaches 54.4% accuracy versus 57.7% for RL with a ground-truth verifier despite not using one; by contrast, SFT or iterative DPO do not go beyond 40.7%. The learned critic can double as a test-time reranker that lifts DeepMath from 57.5% to 68.4% at 7B.

Authors: Locke Cai, Max Ryabinin, Ivan Provilkov

Paper: arXiv:2511.21667

Paper 5

V1: Unifying Generation and Self-Verification for Parallel Reasoners

+10%

Pass@1 · same compute

Up to 10% more correct answers, pulled from generations you already paid for. The win is better answer selection, not more compute.

When you sample many answers with no oracle, scoring each one independently fails, the judge hands almost everything a 10 out of 10 and loses the ability to discriminate. V1 reframes selection as comparison through a near-linear Swiss-tournament verifier. The training recipe, V1-PairRL, teaches a single model to generate and to pairwise-verify its own outputs at the same time, which lifts base accuracy even with no test-time verification at all.

Authors: Harman Singh, Xiuyu Li, Kusha Sareen, Monishwaran Maheswaran, Sijun Tan, Xiaoxia Wu, Junxiong Wang, Alpay Ariyak, Qingyang Wu, Samir Khaki, Rishabh Tiwari, Long Lian, Yucheng Lu, Boyi Li, Alane Suhr, Ben Athiwaratkun, Kurt Keutzer. With collaborators at UC Berkeley, NVIDIA, and Mila.

Paper: arXiv:2603.04304

Algorithmic optimizations

Making the math of inference cheaper: speculative decoding, quantization, RL inference.

Paper 6

When RL Meets Adaptive Speculative Training: A Unified Training-Serving System (Aurora)

1.25×

as traffic shifts

A 1.5x day-0 speedup on brand-new frontier models like MiniMax M2.1 229B and Qwen3-Coder-Next 80B, plus an additional 1.25x over a strong static speculator as traffic shifts. Speculative decoding that is fast on day 0 and keeps getting faster the longer it runs.

Most deployments train the speculator offline and freeze it, so it is slow to deploy and goes stale as traffic and target models change. Aurora reframes online speculator learning as an asynchronous reinforcement-learning problem running in production: accepted and rejected tokens are the reward signal, the training server updates the speculator continuously, and new weights hot-swap into the server with zero downtime.

Authors: Junxiong Wang, Fengxiang Bie, Jisen Li, Zhongzhu Zhou, Zelei Shao, Yubo Wang, Yinghui Liu, Qingyang Wu, Avner May, Sri Yanamandra, Yineng Zhang, Ce Zhang, Tri Dao, Percy Liang, Ben Athiwaratkun, Shuaiwen Leon Song, Chenfeng Xu, Xiaoxia Wu.

Paper: arXiv:2602.06932

Systems optimizations

The systems that train and serve models: disaggregation, batching, scheduling, context parallelism.

Paper 7

Untied Ulysses: Memory-Efficient Context Parallelism via Headwise Chunking

5M tokens

one node · ~87.5% mem

5M-token context training on a single 8xH100 node, with up to 87.5% less attention memory. You can train at a very long context without a bigger cluster.

Activation memory inside the attention layer caps long-context training, and adding GPUs does not move that ceiling. UPipe processes a few attention heads at a time and reuses the same buffers across stages, cutting peak attention memory by up to 87.5% on a 32B Transformer. The result is 5M tokens on one node, about 25% beyond prior methods, and 8M tokens on two nodes, while matching their throughput. It is a drop-in replacement for DeepSpeed-Ulysses on the same FlashAttention-3 kernels, and the code is open.

Authors: Ravi Ghadia, Maksim Abraham, Sergei Vorobyov, Max Ryabinin.

Paper: arXiv:2602.21196

Paper 8

Opportunistic Expert Activation: Batch-Aware Expert Routing for Faster Decode Without Retraining (OEA)

up to 39%

faster MoE decode

Up to 39% lower MoE decode latency, with no retraining and no architecture change. You reclaim the sparsity that batching quietly destroys, for free.

A Mixture-of-Experts model is supposed to be cheap because each token touches only a few experts, but the moment you batch, that sparsity collapses: At batch size 16, a model where each token wants eight experts ends up loading around 82 of them. OEA's batch-aware routing recovers the sparsity at inference time in two phases, the second of which lets tokens share experts the batch has already loaded, buying back quality at zero latency cost. Accuracy holds flat across AIME24, GPQA, LiveCodeBench, and MATH 500, and there is a single hyperparameter to tune.

Authors: Costin-Andrei Oncescu, Qingyang Wu, Wai Tong Chung, Robert Wu, Bryan Gopal, Junxiong Wang, Tri Dao, Ben Athiwaratkun. With collaborators at Harvard and Princeton.

Paper: arXiv:2511.02237

Kernels

The foundation: the GPU kernels everything above runs on. You can read about our Kernels research work here.

By the numbers

1,000+ tasks

10+ domains, one API

DSGym

Up to 3.6×

agent throughput

ThunderAgent

Beats best human

open model, ~$500

TTT-Discover

25% vs 5.9%

vs experts · no verifier

RARO

+10%

Pass@1 · same compute

V1

1.25×

as traffic shifts

Aurora

5M tokens

one node · ~87.5% mem

Untied Ulysses

Up to 39%

faster MoE decode

OEA

Where to find us in Seoul

All eight papers are at ICML 2026, July 6 to 11, in Seoul. Stop by booth B714 to dive deeper into the work.

Together AI @ ICML 2026

COEX, Seoul · July 6 to 11Booth B714 · all week

PaperDate & time · Seoul KSTPoster

Frontier agents

DSGym

Thu 7/9 · 2:30 PM – 4:15 PM

#66567

ThunderAgent

Tue 7/7 · 10:30 AM – 12:15 PM

#62040

TTT-Discover

Tue 7/7 · 5:00 PM – 6:45 PM

#62199

Model shaping

RARO

Thu 7/9 · 10:30 AM – 12:15 PM

#61507

V1

Thu 7/9 · 5:00 PM – 6:45 PM

#64825

Algorithmic optimizations

Aurora

Thu 7/9 · 10:30 AM – 12:15 PM

#66675

Systems optimizations

Untied Ulysses

Thu 7/9 · 5:00 PM – 6:45 PM

#66102

OEA

Wed 7/8 · 10:30 AM – 12:15 PM

#62958

We will also be at our booth all week. Stop by to:

Talk through any of the eight papers with the people who wrote them

See how this research shows up in the Together platform, from fine-tuning to production inference

Meet the team and hear what we are working on next

Come build this with us

We are hiring researchers and research engineers who want to work across the whole stack, not just one layer of it. See open roles at together.ai/careers, or come find us at the booth.

For everyone else: request a meeting in Seoul, browse the full research blog, and follow along on X at [@togethercompute] as the deep dives land across the conference.