Matthias Andreas Benkard | b382b10 | 2021-01-02 15:32:21 +0100 | [diff] [blame] | 1 | rules { |
2 | "LONG" { | ||||
3 | train { | ||||
4 | max_trains = 200; | ||||
5 | max_usages = 20; | ||||
6 | max_iterations = 25; | ||||
7 | learning_rate = 0.01, | ||||
8 | } | ||||
9 | symbol_spam = "NEURAL_SPAM_LONG"; | ||||
10 | symbol_ham = "NEURAL_HAM_LONG"; | ||||
11 | ann_expire = 45d; | ||||
12 | } | ||||
13 | "SHORT" { | ||||
14 | train { | ||||
15 | max_trains = 100; | ||||
16 | max_usages = 10; | ||||
17 | max_iterations = 15; | ||||
18 | learning_rate = 0.01, | ||||
19 | } | ||||
20 | symbol_spam = "NEURAL_SPAM_SHORT"; | ||||
21 | symbol_ham = "NEURAL_HAM_SHORT"; | ||||
22 | ann_expire = 7d; | ||||
23 | } | ||||
24 | } |