- 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 -2
View File
@@ -19,7 +19,7 @@
#include "RnnComponentLayer.hpp"
#include "matutils.hpp"
//==============================================================================
@@ -302,7 +302,7 @@ void RnnComponentLayer::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);
}