diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-06-23 11:15:11 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-06-23 11:15:11 +0100 |
commit | 19073199ff19c32479c74b150b68419e7c450917 (patch) | |
tree | 712e798720378b445150a9fed9779ad6eba23261 /conf | |
parent | c07ae87e906329d41fc9f785cf0509e1177dee94 (diff) | |
download | rspamd-19073199ff19c32479c74b150b68419e7c450917.tar.gz rspamd-19073199ff19c32479c74b150b68419e7c450917.zip |
[Conf] Neural: Fix the default name for max_trains
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.d/neural.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/modules.d/neural.conf b/conf/modules.d/neural.conf index 80db14552..2ab0cbe49 100644 --- a/conf/modules.d/neural.conf +++ b/conf/modules.d/neural.conf @@ -16,7 +16,7 @@ neural { #servers = 127.0.0.1:6379; # Redis server to store learning data and ANN train { - max_train = 1k; # Number of trains per epoch + max_trains = 1k; # Number of trains per epoch max_usages = 20; # Number of learn iterations while ANN data is valid learning_rate = 0.01; # Rate of learning (Torch only) max_iterations = 25; # Maximum iterations of learning (Torch only) |