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/_input_layer_8h_source.html | 125 +++++++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 Doc/html/_input_layer_8h_source.html (limited to 'Doc/html/_input_layer_8h_source.html') diff --git a/Doc/html/_input_layer_8h_source.html b/Doc/html/_input_layer_8h_source.html new file mode 100644 index 0000000..07696ce --- /dev/null +++ b/Doc/html/_input_layer_8h_source.html @@ -0,0 +1,125 @@ + + + + + + +Implémentation de l'algorithme de rétropagation sur un réseau neuronal: Layer/InputLayer.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Implémentation de l'algorithme de rétropagation sur un réseau neuronal +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
InputLayer.h
+
+
+
1 #ifndef _INPUTLAYER_H_
2 #define _INPUTLAYER_H_
3 #include "./Layer.h"
4 
5 class InputLayer : public Layer {
6 public:
7  InputLayer(int,FonctionActivation::EnumFonctionActivation fct);
8  std::vector<double> fire(std::vector<double>, double);
9 };
10 #endif
std::vector< double > fire(std::vector< double >, double)
Definition: InputLayer.cpp:23
+
Definition: Layer.h:8
+
InputLayer(int, FonctionActivation::EnumFonctionActivation fct)
Definition: InputLayer.cpp:7
+
Definition: InputLayer.h:5
+
+
+ + + + -- cgit v1.2.3