Home | Develop | Download | Contact
FCNn.hpp
1 /*
2  * FCNn.hpp
3  *
4  * Copyright 2018 Fernando Pujaico Rivera <fernando.pujaico.rivera@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  *
21  */
22 
32 #ifndef __PDS_FCNN_HPP__
33 #define __PDS_FCNN_HPP__
34 
35 #include <string>
36 #include <Pds/Ra>
37 #include <Pds/FCLayer>
38 
48 namespace Pds{
49 
50 
60 class FCNn
61 {
62 
63 private:
64  // Número de capas (contando la capa de entrada)
65  unsigned int K;
66  // Número de neuronas en cada capa (contando la capa de entrada)
67  std::vector<unsigned int> N;
68  // Valor de las neuronas en cada capa (contando la capa de entrada)
69  std::vector<Pds::Vector> a;
70  // Layer
71  std::vector<Pds::FCLayer> L;
72 public:
73 
86  FCNn(void);
87 
105  FCNn(std::vector<unsigned int> N);
106 
125  FCNn(std::vector<unsigned int> N, double(*func)(double), double(*dfunc)(double));
126 
127 
144  FCNn(std::string filepath,double (*func)(double),double (*dfunc)(double));
145 
146  ~FCNn();
147 
152 public:
165  bool Rand(double minval,double maxval);
166 
171 public:
182  bool Save(std::string filename);
183 
189 public:
207  Pds::Vector Evaluate(const Pds::Vector &In);
208 
221  bool Evaluate(const Pds::Vector &In, Pds::Vector &Out);
222 
259  bool Evaluate(const Pds::Matrix &XIn, Pds::Matrix &YOut);
260 
261 
267 public:
334  bool Training(const Pds::Matrix &X,const Pds::Matrix &Y,double alpha,double lambda);
335 
341 public:
352  void Print(std::string str="") const;
353 
358  void PrintStylized(std::string str="") const;
362 }; // Class FCNn
363 
364 } // namespace Pds
365 
366 
371 #endif
372 
La clase tipo Pds::FCNn . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: FCNn.hpp:61
std::vector< Pds::Vector > a
Definition: FCNn.hpp:69
std::vector< unsigned int > N
Definition: FCNn.hpp:67
std::vector< Pds::FCLayer > L
Definition: FCNn.hpp:71
unsigned int K
Definition: FCNn.hpp:65
bool Rand(double minval, double maxval)
Carga los pesos con valores aleatorios uniformemente distribuidos desde minval hasta maxval.
bool Training(const Pds::Matrix &X, const Pds::Matrix &Y, double alpha, double lambda)
Treina la NN como um bloque de datos entero X para encontrar una variacion de pesos.
FCNn(std::vector< unsigned int > N, double(*func)(double), double(*dfunc)(double))
Crea un objeto de tipo Pds::FCNn con Nin entradas y Nout salidas. Los pesos so iniciados con una dist...
void Print(std::string str="") const
Muestra en pantalla el contenido de Pds::FCNn, elementos separados por tabulador.
void PrintStylized(std::string str="") const
Muestra en pantalla el contenido de Pds::FCNn, en el formato (Nli,Ncol).
FCNn(std::vector< unsigned int > N)
Crea un objeto de tipo Pds::FCNn con Nin entradas y Nout salidas. Usa la función sigmoide....
Pds::Vector Evaluate(const Pds::Vector &In)
Evalua la capa de la CNN.
bool Evaluate(const Pds::Matrix &XIn, Pds::Matrix &YOut)
Evalua la capa de la CNN.
bool Save(std::string filename)
Salva los datos en un archivo binario.
FCNn(void)
Crea un objeto de tipo Pds::FCNn nulo con 0 entradas y 0 salidas. Sin función de activación....
bool Evaluate(const Pds::Vector &In, Pds::Vector &Out)
Evalua la capa de la CNN.
FCNn(std::string filepath, double(*func)(double), double(*dfunc)(double))
Crea un objeto de tipo Pds::FCNn desde un archivo de entrada. es el número de capas incluyendo la ca...
Nombre de espacion para PDS (Procesamiento Digital de Senales)
Definition: FCLayer.hpp:47

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed