Home | Develop | Download | Contact
example_fcnn_export_xml.cpp

Programa para el testeo de las funciones Fully Connected Layer.Para compilar o código example_fcnn_export_xml.cpp:

g++ -static -o example_fcnn_export_xml example_fcnn_export_xml.cpp -lpdsramm -lpdsnnmm

Para executar o programa:

./example_fcnn_export_xml

Retornando por consola:

Código example_fcnn_export_xml.cpp:

#include <Pds/Ra>
#include <Pds/Nn>
int main(void)
{
std::vector<unsigned int> N={2,3,1};
Pds::FCNn NN0=Pds::FCNn(N,Pds::Tanh,Pds::DTanh);
NN0.PrintStylized("\nNN0:\n");
std::string str=NN0.ExportXmlToString();
Pds::FCNn NN1;
NN1.PrintStylized("\nNN1:\n");
std::ofstream myfile("FCNn1.xml", std::ofstream::out);
NN1.ExportXmlToStream(myfile);
myfile.close();
return 0;
}
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
bool ExportXmlToStream(std::ofstream &myfile) const
Salva los datos de la capa en un std::ofstream en formato Xml.
std::string ExportXmlToString(void) const
Salva los datos de la capa en un std::string en formato Xml.
bool ImportXmlFromString(const std::string &str)
Carga los datos de la capa.
void PrintStylized(std::string str="") const
Muestra en pantalla el contenido de Pds::FCNn, en el formato (Nli,Ncol).

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed