Browse Source

[Minor] Fix inequality sign in log message

tags/2.0
Alexander Moisseev 5 years ago
parent
commit
d67b81e321
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/plugins/lua/neural.lua

+ 1
- 1
src/plugins/lua/neural.lua View File

@@ -375,7 +375,7 @@ local function ann_push_task_result(rule, task, verdict, score, set)
if train_opts.ham_score then
learn_ham = score <= train_opts.ham_score
if not learn_ham then
skip_reason = string.format('score > ham_score: %f < %f',
skip_reason = string.format('score > ham_score: %f > %f',
score, train_opts.ham_score)
end
else

Loading…
Cancel
Save