tinn/Tinn.h
Gustav Louw 2a61d1b165 cleanup
2018-03-28 22:20:58 -07:00

22 lines
283 B
C

#ifndef _TINN_H_
#define _TINN_H_
typedef struct
{
double* o;
double* h;
double* w;
int nops;
int nhid;
int nips;
}
Tinn;
double ttrain(Tinn, double* in, double* tg, double rate);
Tinn tbuild(int inputs, int output, int hidden);
void tfree(Tinn);
#endif