Home | Develop | Download | Contact
test_fclayer_create.cpp
1 #include <Pds/Ra>
2 #include <Pds/Nn>
3 
4 int main(void)
5 {
7  Pds::FCLayer L1=Pds::FCLayer(3,5,Pds::Tanh,Pds::DTanh);
8 
9  L0.PrintStylized("\nL0:\n");
10  L1.PrintStylized("\nL1:\n");
11 
12  Pds::Matrix W(4,3);
13  W.FillRandU(0,1);
14  W.Print("\nW:\n");
15 
17  Pds::FCLayer L3=Pds::FCLayer(W,Pds::Tanh,Pds::DTanh);
18 
19  L2.PrintStylized("\nL2:\n");
20  L3.PrintStylized("\nL3:\n");
21 
22  Pds::FCLayer L5;
23  L5.PrintStylized("\nL5:\n");
24 
25  return 0;
26 }
La clase tipo Pds::FCLayer . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: FCLayer.hpp:60
void PrintStylized(std::string str="") const
Muestra en pantalla el contenido de Pds::FCLayer, en el formato (Nli,Ncol).

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed