Skip to content

Commit

Permalink
lower thresh
Browse files Browse the repository at this point in the history
  • Loading branch information
WALIII committed Aug 4, 2017
1 parent d3c0924 commit 5ea3d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion find_audio.m
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
if isempty(thresh_score)
scores_median = median(scores);
scores_min = min(scores);
thresh_score = (scores_median + scores_min) / 2;
thresh_score = 0.75 * scores_median + 0.25 * scores_min;% original= %(scores_median + scores_min) / 2;

if calculate_threshold
match_starts = 0;
Expand Down

0 comments on commit 5ea3d43

Please sign in to comment.