From 1bd45d0e746bfcc5c095630ae51ec4ae952d174f Mon Sep 17 00:00:00 2001 From: Veason-silverbullet Date: Mon, 13 May 2019 14:31:04 +0800 Subject: [PATCH] change eps 1e-6 to 1e-12 --- Source/ComputationNetworkLib/TrainingNodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ComputationNetworkLib/TrainingNodes.h b/Source/ComputationNetworkLib/TrainingNodes.h index 0c0a1c844..53b487732 100644 --- a/Source/ComputationNetworkLib/TrainingNodes.h +++ b/Source/ComputationNetworkLib/TrainingNodes.h @@ -512,7 +512,7 @@ public: else LogicError("This normalizeType is not supported yet."); - m_temp1->SetValue((ElemType) 1e-6); + m_temp1->SetValue((ElemType) 1e-12); Matrix::ScaleAndAdd((ElemType) 1, *m_temp1, *m_magnitude); Value().SetValue(X); Value().RowElementDivideBy(*m_magnitude);