[ICML 2025] Distribution-Conditioned Transport: Mastering Any-to-Any Generalization in Scientific Data

Distribution-Conditioned Transport

Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces Distribution-Conditioned Transport (DCT), a framework that couples permutation-invariant distribution encoders with conditional transport models to map source distributions to target distributions. By conditioning on learned embeddings, DCT achieves SOTA performance in generalizing to unseen distribution pairs and enables semi-supervised learning for distributional forecasting.

TL;DR

Researchers from MIT and Harvard have unveiled Distribution-Conditioned Transport (DCT), a framework that allows AI models to "transport" samples between distributions they have never seen before. By embedding entire populations into a latent space, DCT solves the "sparse data" problem in biology, enabling models to predict how cells evolve or respond to drugs even when data is missing for specific patients or timepoints.

The "Orphan" Problem in Modern Science

In fields like single-cell genomics, we rarely have a complete picture. We might see a patient's blood cells at Day 1 (Source) and Day 10 (Target), but for thousands of other "orphan" clones, we only see a single snapshot.

Current SOTA methods like Meta Flow Matching (MFM) are "supervised"—they need explicit Source-Target pairs to learn the mapping. If you don't have the pair, the data is wasted. Furthermore, these models often struggle to generalize to a brand-new "Batch" or "Donor" they didn't see during training.

Methodology: Embedding the Manifold of Distributions

The genius of DCT lies in its distributionally-invariant encoder. Instead of treating a batch as a "label" (e.g., "Patient A"), DCT treats it as a point on a continuous mathematical manifold of all possible distributions.

1. The Encoder

The model uses a permutation-invariant architecture (Deep Sets/GNN) to ensure that the order of cells doesn't change the outcome. This encoder produces a Distribution Embedding () that captures the "essence" of the population.

2. Any-to-Any Transport

The transport map is conditioned on both and . This creates a universal mapping function: Because the latent space is continuous, the model can move a cell from distribution A to distribution B even if it has only ever seen A and C paired before.

Model Architecture

Empirical Evidence: Breaking the Zero-Shot Barrier

Batch Effect Transfer

In scRNA-seq, "batch effects" (technical noise between experiments) are a nightmare. DCT was tested on 56 mice; it was asked to predict how cells from a "held-out" old mouse would look compared to young mice.

  • Result: DCT outperformed industry standards like scVI and Harmony in zero-shot transport. It didn't just align the data; it accurately predicted the distribution shift.

Batch Results

Leveraging "Orphan Marginals"

In T-cell receptor sequences (COVID-19 data), most patients were only sampled once. DCT's Semi-Supervised mode allowed training on cross-patient samples (Day 1 of Patient A Day 10 of Patient B).

  • Impact: This improved forecasting accuracy by over 50% compared to models that threw away the orphan data.

Depth Perspective: Why does this work?

The paper proves through a Loss CLT (Central Limit Theorem) that training on minibatches of sample sets behaves like training on the true underlying populations in the large-sample limit.

By conditioning on the target embedding, the model becomes a "Distribution Regression" engine. The authors found that even simple linear interpolation in this latent -space corresponds to meaningful physical transitions in the real cell space, such as the developmental path of a stem cell (see latent interpolants trace).

Limitations & Future Work

While DCT is powerful, it can occasionally underperform "specialized" models on IID (In-Distribution) data because it is trying to learn the entire metadistribution rather than memorizing specific pairs. Future work will likely look at dynamic weighting—tuning the model to prioritize local accuracy while maintaining global generalization.

Takeaway

DCT represents a shift from "Task-Specific AI" to "Context-Aware AI" in the biological sciences. It signifies that the most efficient way to model complex systems is to learn the geometric structure of the distributions themselves.


Source: Fishman et al., "Distribution-Conditioned Transport", arXiv (2025). Codebase: [Link provided in paper]

Find Similar Papers

Try Our Examples

  • Search for recent papers that utilize distributionally-invariant encoders or Deep Sets architectures specifically for out-of-distribution (OOD) generalization in biological manifold learning.
  • Which study first introduced the concept of training transport maps between a metadistribution of probability measures, and how does DCT's use of the functional Central Limit Theorem differ from that work?
  • Identify research that applies Distribution-Conditioned Transport or Meta-Flow Matching concepts to multi-modal data integration, such as combining single-cell RNA-seq with spatial transcriptomics.
Contents
[ICML 2025] Distribution-Conditioned Transport: Mastering Any-to-Any Generalization in Scientific Data
1. TL;DR
2. The "Orphan" Problem in Modern Science
3. Methodology: Embedding the Manifold of Distributions
3.1. 1. The Encoder
3.2. 2. Any-to-Any Transport
4. Empirical Evidence: Breaking the Zero-Shot Barrier
4.1. Batch Effect Transfer
4.2. Leveraging "Orphan Marginals"
5. Depth Perspective: Why does this work?
6. Limitations & Future Work
7. Takeaway