Skip to content

prob-ml/bliss

Repository files navigation

Bayesian Light Source Separator (BLISS)

tests codecov.io PyPI

Introduction

BLISS is a Bayesian method for deblending and cataloging light sources. BLISS provides:

  • Accurate estimation of parameters in crowded fields with overlapping sources
  • Calibrated uncertainties through fully Bayesian inference via neural posterior estimation (NPE)
  • Scalability to petabyte-scale surveys containing billions of celestial objects

BLISS uses neural posterior estimation (NPE), a form of simulation-based inference in which a neural network maps telescope images directly to an approximate Bayesian posterior. BLISS uses autoregressive tiling with checkerboard patterns that align the variational distribution's conditional dependencies with the true posterior, improving calibration. BLISS systematically outperforms standard survey pipelines for light source detection, flux measurement, star/galaxy classification, and galaxy shape measurement.

Installation

Requirements: Python 3.12 or higher

BLISS is pip installable with the following command:

pip install bliss-toolkit

The required dependencies are listed in the [project] block of the pyproject.toml file.

Installation (Developers)

  1. Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Install the fftw library (which is used by galsim). With Ubuntu you can install it by running
sudo apt-get install libfftw3-dev
  1. Install git-lfs if you haven't already installed it for another project:
git-lfs install
  1. Now download the bliss repo and fetch some pre-trained models and test data from git-lfs:
git clone git@github.com:prob-ml/bliss.git
  1. To create a virtual environment with the bliss dependencies satisfied, run
cd bliss
uv sync --all-extras
  1. Activate the virtual environment:
source .venv/bin/activate
  1. Verify that bliss is installed correctly by running the tests both on your CPU (default) and on your GPU:
pytest
pytest --gpu
  1. Finally, if you are planning to contribute code to this repository, consider installing our pre-commit hooks so that your code commits will be checked locally for compliance with our coding conventions:
pre-commit install

Usage

BLISS provides a command-line interface powered by Hydra for configuration management. The basic usage pattern is:

bliss mode={generate,train,predict} [config options]
  • mode=generate - Generate synthetic training data from the forward model
  • mode=train - Train encoder networks on simulated or real data
  • mode=predict - Run inference on astronomical images to produce catalogs

Configuration files are located in bliss/conf/ and can be composed and overridden via command line arguments.

Case Studies

The case_studies/ directory contains research applications of BLISS:

  • weak_lensing/ - Tomographic shear (γ) and convergence (κ) mapping
  • redshift/ - Photo-z estimation (BLISS-PZ) with multiple variational families
  • galaxy_clustering/ - Galaxy cluster detection and membership prediction, validated on DES DR2
  • dc2_cataloging/ - Full cataloging pipeline for DC2 simulation
  • strong_lensing/ - Strong gravitational lens detection
  • spatial_tiling/ - Spatially autoregressive tiling for astronomical cataloging
  • psf_variation/ - Spatially varying PSFs for astronomical cataloging

References

Yicun Duan, Xinyue Li, Camille Avestruz, Jeffrey Regier, and LSST Dark Energy Collaboration. Neural posterior estimation for cataloging astronomical images from the Legacy Survey of Space and Time. arXiv:2510.15315. 2025.

Jeffrey Regier. Neural posterior estimation with autoregressive tiling for detecting objects in astronomical images. arXiv:2510.03074. 2025.

Aakash Patel, Tianqing Zhang, Camille Avestruz, Jeffrey Regier, and LSST Dark Energy Science Collaboration. Neural posterior estimation for cataloging astronomical images with spatially varying backgrounds and point spread functions. The Astronomical Journal. 2025.

Runjing Liu, Jon D. McAuliffe, Jeffrey Regier, and The LSST Dark Energy Science Collaboration. Variational inference for deblending crowded starfields. Journal of Machine Learning Research. 2023.

Mallory Wang, Ismael Mendoza, Cheng Wang, Camille Avestruz, and Jeffrey Regier. Statistical inference for coadded astronomical images. NeurIPS Workshop on Machine Learning and the Physical Sciences. 2022.

Yash Patel and Jeffrey Regier. Scalable Bayesian inference for detecting strong gravitational lensing systems. NeurIPS Workshop on Machine Learning and the Physical Sciences. 2022.

Derek Hansen, Ismael Mendoza, Runjing Liu, Ziteng Pang, Zhe Zhao, Camille Avestruz, and Jeffrey Regier. Scalable Bayesian inference for detection and deblending in astronomical images. ICML Workshop on Machine Learning for Astrophysics. 2022.

About

Bayesian Light Source Separator

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 26