Skip to main content

An sklearn-style FID metric class for Jax

Project description

FIDax

A JAX implementation of the Fréchet Inception Distance (FID) metric for evaluating generative models in form of a sklearn-compatible metric.

Features

  • Pure JAX Implementation: Leverages JAX's JIT compilation for fast computation
  • Pre-computed Statistics: Supports using pre-computed real image statistics for faster evaluation
  • GPU Accelerated: Optimized for CUDA-enabled GPUs
  • Torchmetrics Compatible: Results match torchmetrics implementation up to 1e-1 absolute tolerance with FP32 execution of the InceptionV3 model and FP64 for the metric computation on CIFAR10 tests

Installation

# Clone the repository
git clone git@github.com:wittenator/fidax.git
cd fidax

# Install dependencies using uv
uv sync --frozen

or install it directly as a dependency with e.g. uv:

uv add git+https://github.com/wittenator/fidax.git

Quick Start

import jax 
jax.config.update("jax_enable_x64", True)
import jax.numpy as jnp
from fidax.fid import FrechetInceptionDistance

# Initialize FID metric
fid = FrechetInceptionDistance(max_samples=10000)

# Update with real images (shape: [N, 299, 299, 3], range: [-1, 1])
real_images = jnp.random.uniform(-1, 1, (100, 299, 299, 3))
fid.update(real_images, real=True)

# Update with generated/fake images
fake_images = jnp.random.uniform(-1, 1, (100, 299, 299, 3))
fid.update(fake_images, real=False)

# Compute FID score
fid_score = fid.compute()
print(f"FID Score: {fid_score}")

Advanced Usage

Batched Processing

# Process large datasets in batches
fid = FrechetInceptionDistance(max_samples=50000)

batch_size = 64
for i in range(0, len(real_images), batch_size):
    batch = real_images[i:i+batch_size]
    fid.update(batch, real=True)

Pre-computed Statistics

# Use pre-computed real statistics for faster evaluation
real_stats = {
    "mu": mu_real,      # Mean of real activations
    "sigma": sigma_real # Covariance of real activations
}

fid = FrechetInceptionDistance(max_samples=10000, real_stats=real_stats)
# Only need to update with fake images
fid.update(fake_images, real=False)

Requirements

  • Python ≥ 3.12
  • JAX with CUDA support
  • Flax
  • NumPy

See pyproject.toml for complete dependency list.

Development

This project uses a development container with GPU support. To set up the development environment:

# The dev container will automatically install dependencies
# Run tests
uv run pytest src/fidax/test_fid_metric.py

Testing

The implementation includes tests against torchmetrics:

uv run pytest src/fidax/test_fid_metric.py -v

Tests verify:

  • Equivalence with torchmetrics implementation
  • Pre-computed statistics functionality
  • Real-world performance on CIFAR-10 dataset

License

Apache 2.0 License - see LICENSE for details.

Related Projects

  • jax-fid-parallel - Parallel implementation of FID computation in JAX
  • jax-fid - Original JAX implementation of FID that inspired this project

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fidax-0.1.0.tar.gz (72.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fidax-0.1.0-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file fidax-0.1.0.tar.gz.

File metadata

  • Download URL: fidax-0.1.0.tar.gz
  • Upload date:
  • Size: 72.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.4

File hashes

Hashes for fidax-0.1.0.tar.gz
Algorithm Hash digest
SHA256 266722121268729f7dad219fca61803bb9a611ba7dad345c5e21aa5301cc6540
MD5 14fc8fd223ddbabcfe1533b01119c6eb
BLAKE2b-256 2052371fe959c49e2660c771a61d4605e0a69419b2c358c65a24347a0c1db25c

See more details on using hashes here.

File details

Details for the file fidax-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: fidax-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.4

File hashes

Hashes for fidax-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6e34b5daa157f4f3b3df21c03a01c1c0399c0918478b69419efe727e422d08f6
MD5 233c64bd103bc9f61045ce5e49def17d
BLAKE2b-256 8213937169d0dd5e79f61e80126a7b6c08c7391b7f27e172738dc72c2743023e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page