TrackerConfig constructor

const TrackerConfig({
  1. double defaultMaxPathCost = 0.30,
  2. double shortWordPathCost = 0.25,
  3. double mediumWordPathCost = 0.28,
  4. int maxSkipWords = 2,
  5. double acousticConfusionCost = 0.25,
  6. double standardInsertionCost = 0.75,
  7. double standardDeletionCost = 1.0,
  8. double harakatDurationSeconds = 0.200,
  9. double maxTokenDurationAllowed = 2.5,
  10. double lookaheadDelay = 0.320,
  11. bool hideExpectedAsrNoise = true,
})

Implementation

const TrackerConfig({
  this.defaultMaxPathCost = 0.30,
  this.shortWordPathCost = 0.25,
  this.mediumWordPathCost = 0.28,
  this.maxSkipWords = 2,
  this.acousticConfusionCost = 0.25,
  this.standardInsertionCost = 0.75,
  this.standardDeletionCost = 1.0,
  this.harakatDurationSeconds = 0.200,
  this.maxTokenDurationAllowed = 2.5,
  this.lookaheadDelay = 0.320,
  this.hideExpectedAsrNoise = true,
});