init commit

This commit is contained in:
2024-11-12 17:41:10 +01:00
parent 1e4f1f955b
commit 20bc9108d3
146 changed files with 24465 additions and 0 deletions

15
backprop/hiddenCouche.h Normal file
View File

@@ -0,0 +1,15 @@
#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