This reverts commit 76be031254.
This commit is contained in:
Qiwei Ye 2016-06-06 14:19:00 +08:00
Родитель efa91bca2a
Коммит 53428e8ea3
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -1934,11 +1934,6 @@ template <class ElemType>
// clipping gradients to prevent outliers
sgd->ClipGradient(gradientValues, actualMBSize);
if (gradientValues.GetMatrixType() == MatrixType::SPARSE)
{
fprintf(stderr, "Sparse matirx: %d [%d * %d] \n", gradientValues.GetNumElements(), gradientValues.GetNumRows(), gradientValues.GetNumCols());
fflush(stderr);
}
GradientsUpdateType adpType = sgd->GradUpdateType();
double noiseStd = sgd->GradientUpdateNoiseStd();
@ -1952,7 +1947,6 @@ template <class ElemType>
sgdUpdateNoise.SetGaussianRandomValue(0, (ElemType) noiseStd);
}
// L2 regularizer
if (L2RegWeight > 0)
{