MIND: Overcoming the FID Bottleneck with Monge Inception Distance

MIND: Monge Inception Distance for Generative Models Evaluation

Quentin Berthet, Yu-Han Wu, Clément Crepy, Romuald Elie, Klaus Greff, Michaël Sander, Google Deepmind, Sorbonne Lpsm, Université
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces Monge Inception Distance (MIND), a novel metric for evaluating generative models based on the Sliced Wasserstein distance. By replacing the Gaussian assumption of Fréchet Inception Distance (FID) with 1D optimal transport projections, MIND achieves state-of-the-art sample efficiency and robustness.

TL;DR

Researchers from Google DeepMind have proposed Monge Inception Distance (MIND), a replacement for the ubiquitous Fréchet Inception Distance (FID). By leveraging Sliced Wasserstein distances, MIND offers a metric that is 100x faster, 10x more sample-efficient, and theoretically more robust. While FID requires 50,000 samples to stabilize, MIND delivers superior discriminative power with just 5,000.

The Cracks in the FID Standard

For years, FID has been the "gold standard" for evaluating GANs and Diffusion models. However, it harbors three critical flaws:

  1. Statistical Hunger: It requires roughly 50,000 samples to estimate high-dimensional covariance matrices accurately ().
  2. Computational Bloat: Inverting and finding square roots of large matrices is slow and memory-intensive.
  3. Vulnerability to "Hacking": Because FID only looks at the mean and covariance, it is not a "proper distance." One can mathematically construct a "garbage" distribution that perfectly matches the first two moments of a real dataset, resulting in an FID of 0 despite having zero visual quality.

Methodology: From Matrices to Sorting

MIND moves away from the Gaussian approximation. Instead, it uses the Sliced Wasserstein distance.

The intuition is elegant: computing optimal transport in high dimensions is hard, but in 1D, it is trivial—it's just the distance between sorted arrays. MIND projects high-dimensional embeddings onto random unit directions, solves the 1D transport problem via sorting, and averages the results.

MIND Architecture and Pipeline

The Mathematical Core

The empirical estimate for MIND is defined as: where is a scaling factor (typically ) to keep the output magnitude comparable to traditional FID scores.

Performance: Faster, Better, Stronger

The authors conducted extensive benchmarks on ImageNet-64 training runs.

1. Sample Efficiency

A key finding is that MIND5k (5,000 samples) correlates more strongly with the "ground truth" model quality than FID50k. This allows researchers to evaluate models 10x more frequently during training without loss of precision.

2. Computational Speed & Memory

Because sorting is and highly parallelizable on TPUs/GPUs, MIND blows FID out of the water in terms of overhead.

Computation Time Comparison

3. Robustness to Metric Hacking

To prove FID's weakness, the authors performed a Moment-Matching Attack. They optimized images to match the target mean and covariance. While this collapsed the FID score (suggesting a "perfect" model), the MIND metric remained significantly higher, correctly identifying that the distributions were still fundamentally different.

Experimental Results Comparison

Critical Analysis & Future Outlook

MIND represents a shift toward Optimal Transport (OT) theory for practical ML evaluation. By avoiding the "Gaussian trap," it provides a more nuanced view of the latent manifold.

Limitations:

  • Like FID, MIND is still an embedding-dependent metric. If the underlying Inception-v3 or CLIP model has biases, MIND will inherit them.
  • It measures distributional distance, not individual image "beauty" or "text legibility."

Conclusion: For the practitioner, MIND is a "drop-in" upgrade. It reduces the feedback loop of model training from hours to seconds and provides a security layer against moment-matching shortcuts. As generative models scale, the efficiency of our "yardsticks" becomes just as important as the models themselves.

Find Similar Papers

Try Our Examples

  • Search for recent papers published after 2024 that propose alternatives to FID for evaluating generative models, specifically focusing on Sliced Wasserstein or Optimal Transport methods.
  • Which paper first introduced the Sliced Wasserstein distance (SWD) in the context of machine learning, and how does MIND's implementation differ from the original SWD formulation?
  • Investigate studies that apply Monge Inception Distance or similar projection-based metrics to non-image modalities such as Audio synthesis or Video generation models.
Contents
MIND: Overcoming the FID Bottleneck with Monge Inception Distance
1. TL;DR
2. The Cracks in the FID Standard
3. Methodology: From Matrices to Sorting
3.1. The Mathematical Core
4. Performance: Faster, Better, Stronger
4.1. 1. Sample Efficiency
4.2. 2. Computational Speed & Memory
4.3. 3. Robustness to Metric Hacking
5. Critical Analysis & Future Outlook