HyperAIHyperAI

Command Palette

Search for a command to run...

연성 중력 렌즈 효과를 위한 펼쳐진 Plug-and-Play ADMM을 활용한 은하 이미지 디컨볼루션

Tianao Li Emma Alexander

갤럭시-디컨볼루션(Decoupling) : 약한 중력렌즈 은하 이미지 디컨벌루션 프레임워크

노트북으로 이동

초록

은하 이미지의 광학 및 대기 블러를 제거하면 약한 중력렌즈 연구 및 은하 진화 연구에서 은하 형태 측정이 크게 향상된다. 이러한 불안정(non-ill-posed) 선형 역문제(inverse problem)는 일반적으로 규칙화 사전 정보(regularisation priors)나 딥러닝을 강화한 디콘볼루션(deconvolution) 알고리즘을 통해 해결된다. 본 연구에서는 은하 조사(galaxy surveys)에서 점투과함수(Point Spread Function, PSF) 디콘볼루션 문제에 '물리 기반 딥러닝(physics-informed deep learning)' 접근법을 도입한다. 우리는 시뮬레이션된 은하 이미지로부터 적절한 하이퍼파라미터와 디노이징(denoising) 사전 정보를 학습하는 신경망을 활용하여, 다중 승자 방향법(Alternating Direction Method of Multipliers, ADMM)에 알고리즘 언롤링(algorithm unrolling)과 플러그 앤 플레이(Plug-and-Play) 기법을 적용한다. 다양한 밝기 레벨의 은하에 대해 여러 방법의 시간-성능(trade-off) 특성을 분석하고, 본 방법의 체계적인 PSF 오차 및 신경망 부분 제거(ablation)에 대한 강건성을 평가한다. 그 결과, 고전적 방법 대비 감소 전단 타원율(reduced shear ellipticity) 오류가 38.6% (SNR=20)/45.0% (SNR=200) 개선되었으며, 최근 방법 대비로는 7.4% (SNR=20)/33.2% (SNR=200) 개선됨을 보였다.

One-sentence Summary

Tianao Li and Emma Alexander present a physics-informed deep learning framework that unrolls the ADMM algorithm with a plug-and-play neural denoiser and learned hyperparameters for PSF deconvolution of galaxy images, achieving improvements in reduced shear ellipticity error of 38.6% (SNR=20) and 45.0% (SNR=200) over classic methods and 7.4% (SNR=20) and 33.2% (SNR=200) over modern methods for weak gravitational lensing shape measurements.

Key Contributions

  • An unrolled Plug-and-Play ADMM architecture for galaxy image deconvolution combines a learned ResUNet denoiser with trainable step-size hyperparameters, trained end-to-end across a fixed number of iteration layers to integrate physics-based deconvolution steps and data-driven priors.
  • On simulated LSST-like galaxy images, the method reduces reduced shear ellipticity error by 38.6% (SNR=20) and 45.0% (SNR=200) compared to classic techniques, and by 7.4% (SNR=20) and 33.2% (SNR=200) compared to modern methods, while remaining robust to systematic PSF errors.
  • An open-source framework supplies source code, pretrained weights, and simulation tools that allow users to generate custom datasets and retrain the model under their own survey settings.

Introduction

Accurate galaxy shape measurement for weak gravitational lensing is essential for probing dark matter, dark energy, and cosmological models, yet atmospheric and optical blur (the point spread function, or PSF) combined with sensor noise degrades the raw images. Classical deconvolution methods such as Richardson-Lucy amplify noise, and recent physics-informed deep learning approaches like ADMMNet introduce learned denoisers within a Plug-and-Play optimization but rely on variable iteration counts and separate training stages, limiting end-to-end efficiency. The authors propose an unrolled Plug-and-Play ADMM network that fixes the number of iterations and jointly trains a denoising ResUNet together with step-size hyperparameters, yielding a fast, interpretable architecture. They benchmark this unrolled scheme on realistic LSST-like galaxy simulations and demonstrate superior shear estimation accuracy, robustness to PSF mismodeling, and reduced compute time compared to prior deconvolution methods.

Dataset

The authors construct a synthetic dataset of ground-based galaxy observations, pairing clean galaxy images with realistic point-spread functions (PSFs) and noisy blurred counterparts.

  • Sources and composition
    The dataset combines the COSMOS Real Galaxy Dataset with the Galsim simulation toolkit. Simulations follow LSST specifications, using real galaxy cutouts as ground truth. Each sample consists of the clean galaxy, the overall PSF, and the convolved, noise-added image.

  • Processing pipeline

    • Shearing (uniform [0.01, 0.05]) and rotation (uniform [0, 2π]) are applied to raw galaxies to mimic weak lensing.
    • An atmospheric PSF is generated with a Kolmogorov model; its seeing is drawn from a realistic distribution, and additional shear (uniform [0.01, 0.03]) and rotation inject shape variation.
    • An optical PSF is built with LSST diffraction diameter and built-in ranges for obscuration, defocus, coma, and astigmatism. The two PSFs are convolved to form the final PSF, which is saved alongside the data.
    • The galaxy is convolved with the final PSF, and Gaussian noise (σ = 19.4 ADUs) is added based on LSST read noise and a sky level of 350 ADUs/pixel².
    • All images are downsampled to the LSST pixel scale (0.2 arcsec) and mean-subtracted, but brightness is not normalised so the network can adapt to SNR directly from input intensity.
  • Usage in the model
    The simulated dataset is used for both training the proposed unrolled ADMM network and benchmarking classical deconvolution methods. The paper does not detail explicit train/test split sizes or mixture ratios; the data generation code and a link to the pre-generated dataset are provided in the GitHub repository, along with trained weights for LSST settings.

Method

The authors leverage a physics-informed deep learning approach to address the Point Spread Function (PSF) deconvolution problem in galaxy surveys. To solve this ill-posed linear inverse problem, they apply algorithm unrolling and the Plug-and-Play technique to the Alternating Direction Method of Multipliers (ADMM). In this framework, a neural network is tasked with learning appropriate hyperparameters and denoising priors directly from simulated galaxy images.

As shown in the figure below:

The overall pipeline consists of two main components: image simulations and the unrolled ADMM network. For the image simulations, the authors utilize the COSMOS dataset to generate ground truth galaxy images. They randomize shear, rotation, and seeing to create corresponding PSF images. The ground truth is then convolved with the PSF and noise is added to produce the observation, which serves as the input for the network.

The core of the method is the Unrolled ADMM Network, which comprises NNN layers. Each layer executes a sequence of operations: deblurring, denoising via a neural network, and Gaussian Maximum Likelihood Estimation (MLE). A hyperparameter subnetwork is integrated into the architecture to dynamically learn and provide optimal parameters for each iteration. The shared weights across the iteration layers in this unrolled network allow the model to efficiently learn the denoising priors and hyperparameters, facilitating robust reconstruction of the galaxy images from the blurred observations.

Experiment

The evaluation setup uses simulated galaxy images and compares the proposed unrolled ADMM method with classical and learned deconvolution techniques by measuring reduced shear ellipticity error across multiple SNR levels. Experiments show that the fixed-iteration unrolled ADMM consistently achieves the most accurate shape measurements, with ablation studies confirming the importance of jointly training the denoiser and the hyperparameter subnetwork. The method offers a favorable time-performance trade-off compared to iteration-to-convergence approaches and is robust under typical PSF errors, though its sensitivity to large systematic PSF mismatch can be reduced by using fewer unrolled iterations.


AI로 AI 구축

아이디어에서 출시까지 — 무료 AI 코코딩, 즉시 사용 가능한 환경, 최적의 GPU 가격으로 AI 개발을 가속화하세요.

AI 협업 코딩
바로 사용 가능한 GPU
최적의 가격

HyperAI Newsletters

최신 정보 구독하기
한국 시간 매주 월요일 오전 9시 에 이번 주의 최신 업데이트를 메일로 발송합니다
이메일 서비스 제공: MailChimp