probability property

  1. @TagNumber.new(2)
double get probability

0.0, 1.0, backend- AND path-dependent. On the one-shot detect path the built-in energy VAD reports min(1.0, energy/threshold), which saturates at 1.0; on the streaming per-frame path it is binary 0.0/1.0. A model backend reports its own speech probability. Not comparable across backends — do not re-threshold on it.

Implementation

@$pb.TagNumber(2)
$core.double get probability => $_getN(1);
  1. @TagNumber.new(2)
set probability (double value)

Implementation

@$pb.TagNumber(2)
set probability($core.double value) => $_setFloat(1, value);