|
| 1 | +"""Configuration settings for classification thresholds.""" |
| 2 | + |
| 3 | +# Configuration settings for TDAMM tag classification thresholds |
| 4 | +# Format: "tag_name": threshold_value (0.0 to 1.0) |
| 5 | +TDAMM_TAG_THRESHOLDS = { |
| 6 | + "NOT_TDAMM": 0.7, # non-TDAMM |
| 7 | + "MMA_O_BH_AGN": 0.5, # Active Galactic Nuclei |
| 8 | + "MMA_O_BI_BBH": 0.7, # Binary Black Holes |
| 9 | + "MMA_O_BI_BNS": 0.6, # Binary Neutron Stars |
| 10 | + "MMA_O_BI_B": 0.7, # Binary Pulsars |
| 11 | + "MMA_M_G_B": 0.5, # Burst |
| 12 | + "MMA_O_BI_C": 0.7, # Cataclysmic Variables |
| 13 | + "MMA_M_G_CBI": 0.5, # Compact Binary Inspiral |
| 14 | + "MMA_M_G_CON": 0.5, # Continuous |
| 15 | + "MMA_M_C": 0.8, # Cosmic Rays |
| 16 | + "MMA_O_E": 0.7, # Exoplanets |
| 17 | + "MMA_S_FBOT": 0.7, # Fast Blue Optical Transients |
| 18 | + "MMA_S_F": 0.7, # Fast Radio Bursts |
| 19 | + "MMA_M_EM_G": 0.5, # Gamma rays |
| 20 | + "MMA_S_G": 0.8, # Gamma-ray Bursts |
| 21 | + "MMA_M_EM_I": 0.8, # Infrared |
| 22 | + "MMA_O_BH_IM": 0.5, # Intermediate Mass |
| 23 | + "MMA_S_K": 0.5, # Kilonovae |
| 24 | + "MMA_O_N_M": 0.7, # Magnetars |
| 25 | + "MMA_M_N": 0.5, # Neutrinos |
| 26 | + "MMA_O_BI_N": 0.5, # Neutron Star-Black Hole |
| 27 | + "MMA_S_N": 0.8, # Novae |
| 28 | + "MMA_M_EM_O": 0.7, # Optical |
| 29 | + "MMA_S_P": 0.5, # Pevatrons |
| 30 | + "MMA_O_N_PWN": 0.8, # Pulsar Wind Nebulae |
| 31 | + "MMA_O_N_P": 0.5, # Pulsars |
| 32 | + "MMA_M_EM_R": 0.8, # Radio |
| 33 | + "MMA_O_BH_STM": 0.5, # Stellar Mass |
| 34 | + "MMA_S_ST": 0.7, # Stellar flares |
| 35 | + "MMA_M_G_S": 0.8, # Stochastic |
| 36 | + "MMA_S_SU": 0.8, # SuperNovae |
| 37 | + "MMA_O_BH_SUM": 0.5, # Supermassive |
| 38 | + "MMA_O_S": 0.6, # Supernova Remnants |
| 39 | + "MMA_M_EM_U": 0.7, # Ultraviolet |
| 40 | + "MMA_O_BI_W": 0.7, # White Dwarf Binaries |
| 41 | + "MMA_M_EM_X": 0.8, # X-rays |
| 42 | +} |
| 43 | + |
| 44 | +# Default threshold to use if a specific tag isn't defined above |
| 45 | +DEFAULT_TDAMM_THRESHOLD = 0.5 |
| 46 | + |
| 47 | +# Threshold values for different Division classifications |
| 48 | +DIVISION_TAG_THRESHOLDS = { |
| 49 | + "Astrophysics": 0.5, |
| 50 | + "Biological and Physical Sciences": 0.5, |
| 51 | + "Earth Science": 0.5, |
| 52 | + "Heliophysics": 0.5, |
| 53 | + "Planetary Science": 0.5, |
| 54 | + "General": 0.5, |
| 55 | +} |
| 56 | + |
| 57 | +# Default threshold for Division classification |
| 58 | +DEFAULT_DIVISION_THRESHOLD = 0.5 |
0 commit comments