- moved Rbm:prob() to Matutils::prob()

- Matutils::Normalize uses prob()
This commit is contained in:
2024-01-29 13:04:13 +01:00
parent fe8142627d
commit c0445f3bf8
5 changed files with 13 additions and 13 deletions
+2 -1
View File
@@ -19,6 +19,7 @@
#include "RbmComponent.hpp"
#include "matutils.hpp"
@@ -317,7 +318,7 @@ void RbmComponent::onDownPass(const arma::mat& h) const
DrawHidden->getData() = h;
DrawHidden->DrawData();
arma::mat r = prob(h_to_v(h));
arma::mat r = Matutils::prob(h_to_v(h));
reconstRedraw(r);
}