瀏覽代碼

[Rspamd] Add neural module and define its scores

André 7 年之前
父節點
當前提交
5e2d19ac62
共有 2 個文件被更改,包括 46 次插入0 次删除
  1. 28 0
      data/conf/rspamd/local.d/neural.conf
  2. 18 0
      data/conf/rspamd/local.d/neural_group.conf

+ 28 - 0
data/conf/rspamd/local.d/neural.conf

@@ -0,0 +1,28 @@
+rules {
+  "LONG" {
+    train {
+      max_trains = 800;
+      max_usages = 20;
+      max_iterations = 25;
+      learning_rate = 0.01,
+      spam_score = 9;
+      ham_score = -4;
+    }
+    symbol_spam = "NEURAL_SPAM_LONG";
+    symbol_ham = "NEURAL_HAM_LONG";
+    ann_expire = 100d;
+  }
+  "SHORT" {
+    train {
+      max_trains = 90;
+      max_usages = 2;
+      max_iterations = 25;
+      learning_rate = 0.02,
+      spam_score = 9;
+      ham_score = -4;
+    }
+    symbol_spam = "NEURAL_SPAM_SHORT";
+    symbol_ham = "NEURAL_HAM_SHORT";
+    ann_expire = 7d;
+  }
+}

+ 18 - 0
data/conf/rspamd/local.d/neural_group.conf

@@ -0,0 +1,18 @@
+symbols = {
+  "NEURAL_SPAM_LONG" {
+    weight = 4.2; # sample weight
+    description = "Neural network spam (long)";
+  }
+  "NEURAL_HAM_LONG" {
+    weight = -4.0; # sample weight
+    description = "Neural network ham (long)";
+  }
+  "NEURAL_SPAM_SHORT" {
+    weight = 3.0; # sample weight
+    description = "Neural network spam (short)";
+  }
+  "NEURAL_HAM_SHORT" {
+    weight = -2.0; # sample weight
+    description = "Neural network ham (short)";
+  }
+}