Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Consts for using in modules."""
2 
3 ATTR_OBSERVATIONS = "observations"
4 ATTR_OCCURRED_OBSERVATION_ENTITIES = "occurred_observation_entities"
5 ATTR_PROBABILITY = "probability"
6 ATTR_PROBABILITY_THRESHOLD = "probability_threshold"
7 
8 CONF_OBSERVATIONS = "observations"
9 CONF_PRIOR = "prior"
10 CONF_TEMPLATE = "template"
11 CONF_NUMERIC_STATE = "numeric_state"
12 CONF_PROBABILITY_THRESHOLD = "probability_threshold"
13 CONF_P_GIVEN_F = "prob_given_false"
14 CONF_P_GIVEN_T = "prob_given_true"
15 CONF_TO_STATE = "to_state"
16 
17 DEFAULT_NAME = "Bayesian Binary Sensor"
18 DEFAULT_PROBABILITY_THRESHOLD = 0.5