From b4c345e6a5fa929ba20eac19183b9c777055f52d Mon Sep 17 00:00:00 2001 From: Gaspard Coulet Date: Wed, 28 Apr 2021 23:12:36 +0200 Subject: Initial commit --- Doc/html/_settings_8h_source.html | 126 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 Doc/html/_settings_8h_source.html (limited to 'Doc/html/_settings_8h_source.html') diff --git a/Doc/html/_settings_8h_source.html b/Doc/html/_settings_8h_source.html new file mode 100644 index 0000000..44da8c3 --- /dev/null +++ b/Doc/html/_settings_8h_source.html @@ -0,0 +1,126 @@ + + + + + + +Implémentation de l'algorithme de rétropagation sur un réseau neuronal: Settings/Settings.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Implémentation de l'algorithme de rétropagation sur un réseau neuronal +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Settings.h
+
+
+
1 #ifndef SETTINGS_H
2 #define SETTINGS_H
3 #include<vector>
4 
5 class Settings{
6 private:
7  int nbrHiddenLayers;
8  std::vector<int>* archi;
9  std::vector<double>* differentOutputs = new std::vector<double>;
10 public:
11  Settings(char const * fileName);
12  int getNbrHiddenLayers();
13  std::vector<int>* getArchi();
14  std::vector<double>* getDifferentOutputs();
15 
16 };
17 
18 bool exists(double n,std::vector<double>* tab);
19 
20 #endif
std::vector< int > * getArchi()
Definition: Settings.cpp:80
+
Settings(char const *fileName)
Definition: Settings.cpp:13
+
Definition: Settings.h:5
+
int getNbrHiddenLayers()
Definition: Settings.cpp:72
+
std::vector< double > * getDifferentOutputs()
Definition: Settings.cpp:88
+
+
+ + + + -- cgit v1.2.3