- handle full path names

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@661 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-11-12 22:17:26 +00:00
parent f610d2930e
commit f6ae6d5e16
4 changed files with 19 additions and 13 deletions
+2 -1
View File
@@ -35,7 +35,7 @@ public:
class Stack
{
public:
Stack(const std::string &name);
Stack(const std::string &dir, const std::string &name);
Stack(const Stack& orig);
virtual ~Stack();
@@ -60,6 +60,7 @@ public:
arma::mat trainingData(Layer *pLayer);
private:
std::string m_dir;
std::string m_name;
Layer *m_pLayers;
arma::mat m_trainingData;