Files
ia2005/backprop/hiddenCouche.h
2024-11-12 17:41:10 +01:00

16 lines
337 B
C++

#ifndef __HIDDNCOUCHE_H
#define __HIDDNCOUCHE_H
#include "couche.h"
#include <math.h>
class HiddenCouche : public Couche{
private:
public:
HiddenCouche() : Couche(){};
HiddenCouche(const unsigned int nbr,const Couche* next=NULL) : Couche(nbr,next){};
void activate(const Couche &prevCouche);
};
#endif