diff options
author | Luca Deri <deri@ntop.org> | 2021-03-03 19:30:01 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-03-03 19:30:01 +0100 |
commit | 0f8a9948415bceac84148e1965e12e3f19c5050e (patch) | |
tree | e0615fc8fbf465178d29c78472638fb56b6ba5e3 /tests/do-dga.sh | |
parent | 49843509e54aa70dc69005dab5f02f32df7866e2 (diff) |
Improved DGA detection
Before
Accuracy 66%, Precision 86%, Recall 38%
After
Accuracy 71%, Precision 89%, Recall 49%
Diffstat (limited to 'tests/do-dga.sh')
-rwxr-xr-x | tests/do-dga.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/do-dga.sh b/tests/do-dga.sh index dbcbe35b1..d53cc1bd9 100755 --- a/tests/do-dga.sh +++ b/tests/do-dga.sh @@ -4,9 +4,9 @@ cd "$(dirname "${0}")" # Baseline performances ------------------------------------------------------------------------------------------------ # Important notes: BASE values must be integers examples and represents percentage (e.g. 79%, 98%). -BASE_ACCURACY=66 -BASE_PRECISION=86 -BASE_RECALL=38 +BASE_ACCURACY=71 +BASE_PRECISION=89 +BASE_RECALL=49 # ---------------------------------------------------------------------------------------------------------------------- DGA_EVALUATE="./dga/dga_evaluate" |