From: Vsevolod Stakhov Date: Mon, 3 Aug 2020 12:33:04 +0000 (+0100) Subject: [Project] Cleanup the redis script X-Git-Tag: 2.6~187 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2eafa1650e51feb9715ec21f3562b75a0fc1a008;p=rspamd.git [Project] Cleanup the redis script --- 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