summaryrefslogtreecommitdiff
path: root/Layer/InputLayer.h
blob: aa89a4c7cc32d1ceec68f841598d6f847d43bde0 (plain)
1
2
3
4
5
6
7
8
9
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