- use custom noise for bugfixing

- init weights with zero mean uniform noise

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@598 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-10-29 07:00:59 +00:00
parent 595be173b1
commit a061fdf0da
5 changed files with 147 additions and 14 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ void Stack::weightsInit(double stddev)
Layer *pLayer = m_pLayers;
while(pLayer)
{
pLayer->weightsInit(0, stddev);
pLayer->weightsInit(stddev);
pLayer = pLayer->upper;
}
}