No project description provided
Project description
rail_cmnn
RAIL interface to Melissa Graham's CMNN algorithm. A slight modification of the original code found here:
dirac-institute/CMNN_Photoz_estimator
See https://ui.adsabs.harvard.edu/abs/2018AJ....155....1G/abstract
for more details on the code
Any use of rail_cmnn in a paper or report should cite Graham et al. (2018).
The current version of the code consists of a training stage, CMNNInformer, that computes colors for a set of training data and an estimation stage CMNNEstimator that calculates the Mahalanobis distance to each training galaxy for each test galaxy. The mean value of this Guassian PDF can be estimated in one of three ways (see selection mode below), and the width is determined by the standard deviation of training galaxy redshifts within the threshold Mahalanobis distance. Future implementation improvements may change the output format to include multiple Gaussians.
For the color calculation, there is an option for how to treat the "non-detections" in a band: the default choice is to ignore any colors that contain a non-detect magnitude and adjust the number of degrees of freedom in the Mahalanobis distance accordingly (this is how the CMNN algorithm was originally implemented). Or, if the configuration parameter nondetect_replace is set to True in CMNNInformer, the non-detected magnitudes will be replaced with the 1-sigma limiting magnitude in each band as supplied by the user via the mag_limits configuration parameter (or by the default 1-sigma limits if the user does not supply specific numbers). We have not done any exploration of the relative performance of these two choices, but note that there is not a significant performance difference in terms of runtime between the two methods.
CMNNInformer takes in a training data set and returns a model file that simply consists of the computed colors and color errors (magnitude errors added in quadrature) for that dataset, the model to be used in the CMNNEstimator stage. A modification of the original CMNN algorithm, "nondetections" are now replaced by the 1-sigma limiting magnitudes and the non-detect magnitude errors replaced with a value of 1.0. The config parameters that can be set by the user for CMNNInformer are:
bands: list of the band names that should be present in the input data.err_bands: list of the magnitude error column names that should be present in the input data.redshift_col: a string giving the name for the redshift column present in the input data.mag_limits: a dictionary with keys that match those inbandsand a float with the 1 sigma limiting magnitude for each band.- nondetect_val: float or
np.nan, the value indicating a non-detection, which will be replaced by the values inmag_limits. nondetect_replace: bool, if set to False (the default) this option ignores colors with non-detected values in the Mahalanobis distance calculation, with a corresponding drop in the degrees of freedom value. If set to True, the method will replace non-detections with the 1-sigma limiting magnitudes specified viamag_limits(or default 1-sigma limits if not supplied), and will use all colors in the Mahalanobis distance calculation.
The parameters that can be set via the config_params in CMNNEstimator are described in brief below:
bands,err_bands,redshift_col,mag_limitsare all the same as described above forCMNNInformer.ppf_value: float, usually 0.68 or 0.95, which sets the value of the PPF used in the Mahalanobis distance calculation.selection_mode: int, selects how the central value of the Gaussian PDF is calculated in the algorithm, if set to0randomly chooses from set within the Mahalanobis distance, if set to1chooses the nearest neighbor point, if set to2adds a distance weight to the random choice.min_n: int, the minimum number of training galaxies to use.min_thresh: float, the minimum threshold cutoff. Values smaller than this threshold value will be ignored.min_dist: float, the minimum Mahalanobis distance. Values smaller than this will be ignored.bad_redshift_val: float, in the unlikely case that there are not enough training galaxies, this central redshift will be assigned to galaxies.bad_redshift_err: float, in the unlikely case that there are not enough training galaxies, this Gaussian width will be assigned to galaxies.
RAIL: Redshift Assessment Infrastructure Layers
RAIL is a flexible software library providing tools to produce at-scale photometric redshift data products, including uncertainties and summary statistics, and stress-test them under realistically complex systematics. A detailed description of RAIL's modular structure is available in the Overview on ReadTheDocs.
RAIL serves as the infrastructure supporting many extragalactic applications of the Legacy Survey of Space and Time (LSST) on the Vera C. Rubin Observatory, including Rubin-wide commissioning activities. RAIL was initiated by the Photometric Redshifts (PZ) Working Group (WG) of the LSST Dark Energy Science Collaboration (DESC) as a result of the lessons learned from the Data Challenge 1 (DC1) experiment to enable the PZ WG Deliverables in the LSST-DESC Science Roadmap (see Sec. 5.18), aiming to guide the selection and implementation of redshift estimators in DESC analysis pipelines. RAIL is developed and maintained by a diverse team comprising DESC Pipeline Scientists (PSs), international in-kind contributors, LSST Interdisciplinary Collaboration for Computing (LINCC) Frameworks software engineers, and other volunteers, but all are welcome to join the team regardless of LSST data rights.
Installation
Installation instructions are available under Installation on ReadTheDocs.
Contributing
The greatest strength of RAIL is its extensibility; those interested in contributing to RAIL should start by consulting the Contributing guidelines on ReadTheDocs.
Citing RAIL
RAIL is open source and may be used according to the terms of its LICENSE (BSD 3-Clause). If you used RAIL in your study, please cite this repository https://github.com/LSSTDESC/RAIL, and RAIL Team et al. (2025) https://arxiv.org/abs/2505.02928
@ARTICLE{2025arXiv250502928T,
author = {{The RAIL Team} and {van den Busch}, Jan Luca and {Charles}, Eric and {Cohen-Tanugi}, Johann and {Crafford}, Alice and {Crenshaw}, John Franklin and {Dagoret}, Sylvie and {De-Santiago}, Josue and {De Vicente}, Juan and {Hang}, Qianjun and {Joachimi}, Benjamin and {Joudaki}, Shahab and {Bryce Kalmbach}, J. and {Kannawadi}, Arun and {Liang}, Shuang and {Lynn}, Olivia and {Malz}, Alex I. and {Mandelbaum}, Rachel and {Merz}, Grant and {Moskowitz}, Irene and {Oldag}, Drew and {Ruiz-Zapatero}, Jaime and {Rahman}, Mubdi and {Rau}, Markus M. and {Schmidt}, Samuel J. and {Scora}, Jennifer and {Shirley}, Raphael and {St{\"o}lzner}, Benjamin and {Toribio San Cipriano}, Laura and {Tortorelli}, Luca and {Yan}, Ziang and {Zhang}, Tianqing and {the Dark Energy Science Collaboration}},
title = "{Redshift Assessment Infrastructure Layers (RAIL): Rubin-era photometric redshift stress-testing and at-scale production}",
journal = {arXiv e-prints},
keywords = {Instrumentation and Methods for Astrophysics, Cosmology and Nongalactic Astrophysics, Astrophysics of Galaxies},
year = 2025,
month = may,
eid = {arXiv:2505.02928},
pages = {arXiv:2505.02928},
doi = {10.48550/arXiv.2505.02928},
archivePrefix = {arXiv},
eprint = {2505.02928},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/abs/2025arXiv250502928T},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
Please consider also inviting the developers as co-authors on publications resulting from your use of RAIL by making an issue. A convenient list of what to cite may be found under Citing RAIL on ReadTheDocs. Additionally, several of the codes accessible through the RAIL ecosystem must be cited if used in a publication.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pz_rail_cmnn-2.0.0.tar.gz.
File metadata
- Download URL: pz_rail_cmnn-2.0.0.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30302f418dfc8577f3843462f8cbef5e03bcf23d5dd604b6e80f39afafc8dc29
|
|
| MD5 |
5dfde263680e93ea6868b5c96de42d35
|
|
| BLAKE2b-256 |
b5d1ecbf0e2170b35d41ef3f43d4c0fe9bf941fe00325a28d3fd8dae50b0c10c
|
Provenance
The following attestation bundles were made for pz_rail_cmnn-2.0.0.tar.gz:
Publisher:
publish-to-pypi.yml on LSSTDESC/rail_cmnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pz_rail_cmnn-2.0.0.tar.gz -
Subject digest:
30302f418dfc8577f3843462f8cbef5e03bcf23d5dd604b6e80f39afafc8dc29 - Sigstore transparency entry: 963267473
- Sigstore integration time:
-
Permalink:
LSSTDESC/rail_cmnn@d18ec42231a70dd57f0eec3f7767c4810889a84b -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/LSSTDESC
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@d18ec42231a70dd57f0eec3f7767c4810889a84b -
Trigger Event:
release
-
Statement type:
File details
Details for the file pz_rail_cmnn-2.0.0-py3-none-any.whl.
File metadata
- Download URL: pz_rail_cmnn-2.0.0-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24d62469c63f42bda038a294a6ba20d5dcde166d44108b24cd46a5d772ee7c92
|
|
| MD5 |
482cad75da67580766b7837c8f42098c
|
|
| BLAKE2b-256 |
c8e161d42bfe0524c07781c5991231e50ca801247843e506d6a21836543b4fdb
|
Provenance
The following attestation bundles were made for pz_rail_cmnn-2.0.0-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on LSSTDESC/rail_cmnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pz_rail_cmnn-2.0.0-py3-none-any.whl -
Subject digest:
24d62469c63f42bda038a294a6ba20d5dcde166d44108b24cd46a5d772ee7c92 - Sigstore transparency entry: 963267475
- Sigstore integration time:
-
Permalink:
LSSTDESC/rail_cmnn@d18ec42231a70dd57f0eec3f7767c4810889a84b -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/LSSTDESC
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@d18ec42231a70dd57f0eec3f7767c4810889a84b -
Trigger Event:
release
-
Statement type: