- added Stack::save()

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@579 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-10-25 17:30:31 +00:00
parent 5c01e7d4ce
commit 7aa3f0a747
6 changed files with 110 additions and 49 deletions
-5
View File
@@ -32,11 +32,6 @@ public:
virtual void up_pass(arma::mat const &v) = 0;
virtual void down_pass(arma::mat &dst, arma::mat const &src) = 0;
void registerLayer(ILayer *pLayer)
{
lower = pLayer;
pLayer->upper = this;
}
};