A package for classifying tabular photometry data from JWST, Spitzer, and 2MASS according to one of YSOs, field stars, brown dwarfs, white dwarfs, or galaxies.
Project description
Stellar Evolutionary Stage Heuristic Assessment Tool (SESHAT)
This is a beta version of the SESHAT tool, currently being modified for publication.
The final version will be released pending any suggestions from the referee.
If you use this package, please cite Crompvoets et al. 2025 (submitted). Please also cite the original data producers:
YSOs: [Richardson et al. (2024)][https://ui.adsabs.harvard.edu/abs/2024ApJ...961..188R/abstract]
Brown dwarfs: ATMO -- [Phillips et al. (2020)][https://ui.adsabs.harvard.edu/abs/2020A%26A...637A..38P/abstract]
White dwarfs: [Blouin et al. (2018)][https://ui.adsabs.harvard.edu/abs/2018ApJ...863..184B/abstract]
Field stars: PARSEC -- [Bressen et al. (2012)][https://ui.adsabs.harvard.edu/abs/2012MNRAS.427..127B/abstract]
Galaxies: CIGALE -- [Burgarella et al. 2005][https://ui.adsabs.harvard.edu/abs/2005MNRAS.360.1413B/abstract], [Noll et al. 2009][https://ui.adsabs.harvard.edu/abs/2009A%26A...507.1793N/abstract] [Boquin et al. (2020)][https://ui.adsabs.harvard.edu/abs/2019A%26A...622A.103B/abstract]
Catalog set-up
Please have your catalog set-up with the columns as:
Spitzer: ['IRAC1', 'IRAC2', 'IRAC3', 'IRAC4', 'MIPS1', 'MIPS2', 'MIPS3']
2MASS: ['J', 'H', 'Ks']
JWST: in the frame of 'f090w', or 'f322w2'.
Please include errors as 'e_' + filter name; e.g. 'e_f090w'.
All columns must be in Vega mags.
If you have labels already known, these should be under the column: 'Class'
The labels should match the following:
Young Stellar Objects: "YSO"
Field stars: "FS"
Galaxies: "Gal"
White dwarfs: "WD"
Brown dwarfs: "BD"
Other important information
The function classify accepts pandas DataFrames or Astropy Tables.
When testing filters, it is assumed the data will have errors that can be approximated by a Gaussian with mean 0.1 mag and standard deviation 0.01 mag.
SESHAT only takes medium, wide, and very-wide filters as input for JWST, no narrow filters.
Example of obtaining classifications
from seshat_classifier import seshat
import pandas as pd
# Read in catalog
my_catalog = pd.read_csv("my_catalog.csv")
# Specify classes to be identified
classes = ['YSO', 'FS', 'Gal']
# Get classifications
my_catalog_classified = seshat.classify(real = my_catalog, classes = classes, return_test=False, threads = 8)
# Get classifications and test set performance
my_catalog_classified, test_results = seshat.classify(real = my_catalog, classes = classes, return_test=True, threads = 8)
Example of testing filters
from seshat_classifier import seshat
import numpy as np
import matplotlib.pyplot as plt
# Specify filters to test
filters = ['f090w', 'f200w', 'f356w', 'f480m', 'f770w', 'f1500w']
# Specify classes to search for
classes = ['YSO', 'FS', 'Gal']
# Specify the limiting and saturating magnitudes of your observations
limiting_mags = {'f090w':22, 'f200w':23, 'f356w':24, 'f480m':25, 'f770w':22, 'f1500w':24}
saturating_mags = {'f090w':14, 'f200w':13, 'f356w':12, 'f480m':11, 'f770w':15, 'f1500w':14}
# Specify the expected distribution of errors
sig = 0.02
mean = 0.1
errs = [np.random.normal(mean, sig, size=100) for f in filters] # Choose a suitably large size to capture shape of distribution
# Get the performance
test_results = seshat.test_filters(filters = filters, classes=classes, limiting_mags = limiting_mags, saturating_mags = saturating_mags, errs=errs, threads = 8)
# Plot performance
ax = seshat.cm_custom(test_results.Class,test_results.Predicted_Class,cmap='Greys',display_labels=classes)
plt.show()
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 seshat_classifier-0.1.0.tar.gz.
File metadata
- Download URL: seshat_classifier-0.1.0.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9659e56f58cbfb2465f63a3c3dddb7364f48589094af0c6b54e6b77d003cca6
|
|
| MD5 |
2ccc640fbd4e291c25c526beb9ee9e7c
|
|
| BLAKE2b-256 |
ac6edf139753d670f4762671ceda2ae3ade224feb96120880248e3179ed83a9a
|
File details
Details for the file seshat_classifier-0.1.0-py3-none-any.whl.
File metadata
- Download URL: seshat_classifier-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
134a88392d00e99ca99c8e3f08871dcdb35deaf4fa1e02a94c3e27bcd89a1c02
|
|
| MD5 |
840a4c4d573d608ff594f2f6a8027468
|
|
| BLAKE2b-256 |
f0c9bfb741838507b9a3d2e33e191e15ae19847ddf763c72c9c1c852aa36a8c9
|