Created
December 12, 2024 19:50
-
-
Save benjaminrose/107f3f5030d6d4d63d7eb772f0ad134f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import pandas as pd | |
select = { | |
"SN_Ia": 300, | |
"CCSN": 160, | |
"SN_Iax": 10, | |
# "SLSN-I": 5, | |
# "TDE": 5, | |
# "ILOT": 5, | |
# "KN": 3, | |
# "PISN": 3, | |
# "AGN": 5, | |
} | |
OBJECT_FILE = "data_release/hourglass_objects.parquet" | |
#SPEC_FILE = "data_release/hourglass_spectra.parquet" | |
objs = pd.read_parquet(OBJECT_FILE) | |
# spec = pd.read_parquet(SPEC_FILE) | |
for key in select.keys(): | |
obj_hold = [] | |
obj_hold = objs[objs["class"] == key] | |
prism_mask = [] | |
for _, row in obj_hold.iterrows(): | |
prism_mask.append("PRISM" in row["field"]) | |
obj_hold = obj_hold[prism_mask] | |
if len(obj_hold) < select[key]: | |
print(f"Issue with {key}. It only has {len(obj_hold)} objects with prism.") | |
else: | |
subselection = np.random.choice(obj_hold["cid"], select[key], replace=False) | |
print(f"CIDs for {key}") | |
print(subselection) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment