From b4c345e6a5fa929ba20eac19183b9c777055f52d Mon Sep 17 00:00:00 2001 From: Gaspard Coulet Date: Wed, 28 Apr 2021 23:12:36 +0200 Subject: Initial commit --- Layer/InputLayer.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Layer/InputLayer.h (limited to 'Layer/InputLayer.h') 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 fire(std::vector, double); +}; +#endif -- cgit v1.2.3