From de3acfa0e12482137f9da1e89c5af6984552c129 Mon Sep 17 00:00:00 2001 From: relikd Date: Tue, 15 Sep 2020 15:15:06 +0200 Subject: [PATCH] Adjust threshold --- src/html_bundle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/html_bundle.py b/src/html_bundle.py index 44d6c9e..c78ef87 100755 --- a/src/html_bundle.py +++ b/src/html_bundle.py @@ -5,8 +5,8 @@ import time import math import common_lib as mylib -THRESHOLD_PERCENT_OF_LOGS = 0.7 # domain appears in % recordings -THRESHOLD_MIN_AVG_LOGS = 1.0 # at least x times in total (after %-thresh) +THRESHOLD_PERCENT_OF_LOGS = 0.33 # domain appears in % recordings +THRESHOLD_MIN_AVG_LOGS = 0.4 # at least x times in total (after %-thresh) def seconds_to_time(seconds):