commit 2eafa16: [Project] Cleanup the redis script

Vsevolod Stakhov vsevolod at highsecure.ru
Mon Aug 3 13:07:08 UTC 2020


Author: Vsevolod Stakhov
Date: 2020-08-03 13:33:04 +0100
URL: https://github.com/rspamd/rspamd/commit/2eafa1650e51feb9715ec21f3562b75a0fc1a008

[Project] Cleanup the redis script

---
 src/plugins/lua/neural.lua | 30 ------------------------------
 1 file changed, 30 deletions(-)

diff --git a/src/plugins/lua/neural.lua b/src/plugins/lua/neural.lua
index 41a9b4f07..fcf9ac5c2 100644
--- a/src/plugins/lua/neural.lua
+++ b/src/plugins/lua/neural.lua
@@ -114,36 +114,6 @@ local redis_lua_script_vectors_len = [[
   if ret then nham = tonumber(ret) end
 
   return {nspam,nham}
-
-  if KEYS[2] == 'spam' then
-    if nspam <= lim then
-      if nspam > nham then
-        -- Apply sampling
-        local skip_rate = 1.0 - nham / (nspam + 1)
-        if coin < skip_rate - classes_bias then
-          return {tostring(-(nspam)),'sampled out with probability ' .. tostring(skip_rate - classes_bias)}
-        end
-      end
-      return {tostring(nspam),'can learn'}
-    else -- Enough learns
-      return {tostring(-(nspam)),'too many spam samples'}
-    end
-  else
-    if nham <= lim then
-      if nham > nspam then
-        -- Apply sampling
-        local skip_rate = 1.0 - nspam / (nham + 1)
-        if coin < skip_rate - classes_bias then
-          return {tostring(-(nham)),'sampled out with probability ' .. tostring(skip_rate - classes_bias)}
-        end
-      end
-      return {tostring(nham),'can learn'}
-    else
-      return {tostring(-(nham)),'too many ham samples'}
-    end
-  end
-
-  return {tostring(-1),'bad input'}
 ]]
 local redis_lua_script_vectors_len_id = nil
 


More information about the Commits mailing list