diff options
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/lua_nn.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lualib/lua_nn.lua b/lualib/lua_nn.lua index 90d88c12c..512e904a0 100644 --- a/lualib/lua_nn.lua +++ b/lualib/lua_nn.lua @@ -14,16 +14,14 @@ See the License for the specific language governing permissions and limitations under the License. ]]-- -local rspamd_util = require "rspamd_util" +local rspamd_logger = require "rspamd_logger" local torch -local nn local exports = {} local lua_nn_models = {} if rspamd_config:has_torch() then torch = require "torch" - nn = require "nn" end if torch then |