Programa para el testeo de algunas funciones de la biblioteca.
- Autor
- Fernando Pujaico Rivera
- Fecha
- 01-01-2012
Este programa solo hace una prueba simple de las funciones que hice mas al tun tun.
#include <stdlib.h>
#include <math.h>
#include <pds/pdsra.h>
#include <pds/pdsnn.h>
int main(int argc, char** argv)
{
if(MLayer==NULL) return EXIT_FAILURE;
PdsVector *X = pds_vector_new(Larray[0]);
PdsVector *Y = pds_vector_new(Larray[Nel-1]);
if( (X==NULL)||(Y==NULL) ) return EXIT_FAILURE;
id=0;
for(i=0;id<Ntraining;i++)
{
printf("\nTraining %4d: id=%4d\n",i,id);
if( (IterP==0)&&(IterN==0) ) id++;
else id=0;
}
if(argc>1)
{
printf("\nSaving neural network in %s\n\n",argv[1]);
}
else
{
printf("\nSaving neural network in data.mlayer\n\n");
}
pds_vector_free(X);
pds_vector_free(Y);
return EXIT_SUCCESS;
}