From 0b85dd71486ad6602f6ede80d9e6c3f94039cf36 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Tue, 29 Oct 2019 07:20:20 +0000 Subject: [PATCH] - no weight decay per default git-svn-id: http://moon:8086/svn/software/trunk/projects/RBM@602 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Source/Rbm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Rbm.hpp b/Source/Rbm.hpp index 056e769..757a14c 100644 --- a/Source/Rbm.hpp +++ b/Source/Rbm.hpp @@ -20,7 +20,7 @@ public: struct Params { Params() - : m_weightDecay(0.01) + : m_weightDecay(0.0) , m_learningRate(0.1) , m_momentum(0.5) , m_doRaoBlackwell(true)