Home
|
Develop
|
Download
|
Contact
test
test_fclayer_create.cpp
1
#include <Pds/Ra>
2
#include <Pds/Nn>
3
4
int
main(
void
)
5
{
6
Pds::FCLayer
L0=
Pds::FCLayer
(3,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
16
Pds::FCLayer
L2=
Pds::FCLayer
(W);
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
}
Pds::FCLayer
La clase tipo Pds::FCLayer . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition:
FCLayer.hpp:60
Pds::FCLayer::PrintStylized
void PrintStylized(std::string str="") const
Muestra en pantalla el contenido de Pds::FCLayer, en el formato (Nli,Ncol).
Enlaces de interés
Manual de referencia generado el Domingo, 28 de Noviembre de 2021 03:17:37 para la biblioteca
libpdsnnmm
usando Generado el Domingo, 28 de Noviembre de 2021 03:17:37 para libpdsnnmm por
1.9.2