Home | Develop | Download | Contact
test_fclayer_evaluate.cpp
1 #include <Pds/Ra>
2 #include <Pds/Nn>
3 
4 int main(void)
5 {
6  Pds::FCLayer L=Pds::FCLayer(5,2,Pds::Tanh,Pds::DTanh);
7  L.PrintStylized("<<L>>:\n");
8 
9  Pds::Vector In="1 4 1 2 -1";
10  In.Print("\n<<In>>\n");
11 
12  Pds::Vector Out(2);
13  Pds::Vector Z(2);
14 
15  Out=L.Evaluate(In);
16  Out.Print("\n<<Out>>\n");
17 
18  L.Evaluate(In,Out);
19  Out.Print("\n<<Out>>\n");
20 
21  L.Evaluate(In,Out,Z);
22  Out.Print("\n<<Out>>\n");
23  Z.Print("<<Z>>\n");
24  return 0;
25 }
La clase tipo Pds::FCLayer . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: FCLayer.hpp:60
Pds::Vector Evaluate(const Pds::Vector &In) const
Evalua la capa de la CNN.
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