- fixed ambigious overload

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@785 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-01-11 18:29:57 +00:00
parent eacefc1e80
commit c901187603
+1 -1
View File
@@ -935,7 +935,7 @@ void MainComponent::updateControls()
momentumLabel->setText(String(m_pLayer->params().momentum), dontSendNotification);
numVisibleLabel->setText(String(m_pLayer->numVisibleX()), dontSendNotification );
numVisibleYLabel->setText(String(m_pLayer->numVisibleY()), dontSendNotification );
numHiddenLabel->setText(String(m_pLayer->numHidden()), dontSendNotification );
numHiddenLabel->setText(String((int)m_pLayer->numHidden()), dontSendNotification );
numEpochslabel->setText(String((int)m_pLayer->params().numEpochs), dontSendNotification);
sizeMiniBatch->setText(String((int)m_pLayer->params().miniBatchSize), dontSendNotification);