Skip to content

Commit

Permalink
[QnAMaker] Active learning low score variation multiplier value (#1359)…
Browse files Browse the repository at this point in the history
… (#1361)

Active learning low score variation multiplier value
- PreviousLowScoreVariationMultiplier to 0.7
- MaxLowScoreVariationMultiplier to 1.0
  • Loading branch information
gurvsing authored and cleemullins committed Oct 25, 2019
1 parent 2b3c47e commit 5d14feb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import { QnAMakerResult } from '../qnamaker-interfaces/qnamakerResult';
const MinimumScoreForLowScoreVariation = 20;

// Previous Low Score Variation Multiplier
const PreviousLowScoreVariationMultiplier = 1.4;
const PreviousLowScoreVariationMultiplier = 0.7;

// Max Low Score Variation Multiplier
const MaxLowScoreVariationMultiplier = 2.0;
const MaxLowScoreVariationMultiplier = 1.0;

// Maximum Score For Low Score Variation
const MaximumScoreForLowScoreVariation = 95.0;
Expand Down

0 comments on commit 5d14feb

Please sign in to comment.