diff options
Diffstat (limited to 'Layer/InputLayer.h')
| -rw-r--r-- | Layer/InputLayer.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Layer/InputLayer.h b/Layer/InputLayer.h new file mode 100644 index 0000000..aa89a4c --- /dev/null +++ b/Layer/InputLayer.h @@ -0,0 +1,10 @@ +#ifndef _INPUTLAYER_H_
+#define _INPUTLAYER_H_
+#include "./Layer.h"
+
+class InputLayer : public Layer {
+public:
+ InputLayer(int,FonctionActivation::EnumFonctionActivation fct);
+ std::vector<double> fire(std::vector<double>, double);
+};
+#endif
|
