You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/binary_sensor.bayesian.markdown
+3-7
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,9 @@ ha_release: 0.53
14
14
---
15
15
16
16
17
-
The `bayesian` binary sensor platform observes the state from multiple sensors and uses Bayes' rule to estimate the probability that an event has occurred
18
-
given the state of the observed sensors. If the estimated posterior probability is above the `probabiliy_threshold`, the value of the sensor is `on`.
19
-
Otherwise, the sensor is `off`.
17
+
The `bayesian` binary sensor platform observes the state from multiple sensors and uses Bayes' rule to estimate the probability that an event has occurred given the state of the observed sensors. If the estimated posterior probability is above the `probability_threshold`, the sensor is `on` otherwise it is `off`.
20
18
21
-
This allows for the detection of complex events that may not be readily observable, i.e., cooking, showering, in bed, the start of a morning routine, etc. It
22
-
can also be used to gain greater confidence about events that _are_ directly observable, but for which the sensors can be unreliable, i.e., presence.
19
+
This allows for the detection of complex events that may not be readily observable, e.g., cooking, showering, in bed, the start of a morning routine, etc. It can also be used to gain greater confidence about events that _are_ directly observable, but for which the sensors can be unreliable, e.g., presence.
23
20
24
21
To enable the Bayesian sensor, add the following lines to your `configuration.yaml`:
25
22
@@ -39,7 +36,7 @@ binary_sensor:
39
36
Configuration variables:
40
37
41
38
- **prior** (*Required*): The prior probability of the event. At any point in time (ignoring all external influences) how likely is this event to occur?
42
-
- **observations** array (*Required*): The observations which should influence the likelihood that the given event has occurred.
39
+
- **observations** array (*Required*): The observations which should influence the likelihood that the given event has occurred.
43
40
- **entity_id** (*Required*): Name of the entity to monitor.
44
41
- **prob_given_true** (*Required*): The probability of the observation occurring, given the event is `true`.
45
42
- **prob_given_false** (*Optional*): The probability of the observation occurring, given the event is `false` can be set as well. If `prob_given_false` is not set, it will default to `1 - prob_given_true`.
Copy file name to clipboardExpand all lines: source/_components/camera.arlo.markdown
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,6 @@ camera:
28
28
29
29
Configuration variables:
30
30
31
-
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g. image quality or video filter options.
31
+
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g., image quality or video filter options.
32
32
33
33
**Note:** To be able to playback the last capture, it is required to install the `ffmpeg` component. Make sure to follow the steps mentioned at [FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation.
0 commit comments