diff options
| author | Gaspard Coulet <gaspard.coulet@mines-ales.org> | 2021-04-28 23:12:36 +0200 |
|---|---|---|
| committer | Gaspard Coulet <gaspard.coulet@mines-ales.org> | 2021-04-28 23:12:36 +0200 |
| commit | b4c345e6a5fa929ba20eac19183b9c777055f52d (patch) | |
| tree | 23a0232f2526c5ab7f53391609a8a0a5960865f0 /Settings/Settings.h | |
Initial commit
Diffstat (limited to 'Settings/Settings.h')
| -rw-r--r-- | Settings/Settings.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Settings/Settings.h b/Settings/Settings.h new file mode 100644 index 0000000..1503cfe --- /dev/null +++ b/Settings/Settings.h @@ -0,0 +1,20 @@ +#ifndef SETTINGS_H +#define SETTINGS_H +#include<vector> + +class Settings{ +private: + int nbrHiddenLayers; + std::vector<int>* archi; + std::vector<double>* differentOutputs = new std::vector<double>; +public: + Settings(char const * fileName); + int getNbrHiddenLayers(); + std::vector<int>* getArchi(); + std::vector<double>* getDifferentOutputs(); + +}; + +bool exists(double n,std::vector<double>* tab); + +#endif |
