stability property

  1. @TagNumber(3)
double get stability

An estimate of the likelihood that the recognizer will not change its guess about this interim result. Values range from 0.0 (completely unstable) to 1.0 (completely stable). This field is only provided for interim results (is_final=false). The default of 0.0 is a sentinel value indicating stability was not set.

Implementation

@$pb.TagNumber(3)
$core.double get stability => $_getN(2);
  1. @TagNumber(3)
set stability (double v)

Implementation

@$pb.TagNumber(3)
set stability($core.double v) {
  $_setFloat(2, v);
}