Home | Develop | Download | Contact
example_fcnn_predict.cpp
1 
24 #include <Pds/Ra>
25 #include <Pds/Nn>
26 
27 int main(void)
28 {
29  Pds::Vector In="-4 -4";
30  Pds::Vector Out(1);
31  std::vector<unsigned int> N={2,16,4,1};
32 
33  Pds::FCNn NN0=Pds::FCNn(N,Pds::Tanh,Pds::DTanh);
34 
35  // Evaluando la red neuronal.
36  NN0.Predict(In,Out);
37 
38  // Imprimiendo datos de entrada y salida.
39  In.Print("In:\n");
40  Out.Print("Out:\n");
41 
42  return 0;
43 }
La clase tipo Pds::FCNn . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: FCNn.hpp:62
const std::string FCNn
Tag de un objeto de tipo Pds::FCNn.
Definition: NnDefines.hpp:165
Pds::SampleBlock Predict(const Pds::SampleBlock &In) const
Evalua la capa de la CNN.

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed