summaryrefslogtreecommitdiff
path: root/Layer/InputLayer.h
diff options
context:
space:
mode:
authorGaspard Coulet <gaspard.coulet@mines-ales.org>2021-04-28 23:12:36 +0200
committerGaspard Coulet <gaspard.coulet@mines-ales.org>2021-04-28 23:12:36 +0200
commitb4c345e6a5fa929ba20eac19183b9c777055f52d (patch)
tree23a0232f2526c5ab7f53391609a8a0a5960865f0 /Layer/InputLayer.h
Initial commit
Diffstat (limited to 'Layer/InputLayer.h')
-rw-r--r--Layer/InputLayer.h10
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