mirror of
https://github.com/glouw/tinn
synced 2024-11-22 06:21:44 +03:00
22 lines
301 B
C
22 lines
301 B
C
#ifndef _TINN_H_
|
|
#define _TINN_H_
|
|
|
|
typedef struct
|
|
{
|
|
double* o;
|
|
double* h;
|
|
double* w;
|
|
int nops;
|
|
int nhid;
|
|
int nips;
|
|
}
|
|
Tinn;
|
|
|
|
extern double xttrain(Tinn, double* in, double* tg, double rate);
|
|
|
|
extern Tinn xtbuild(int nips, int nops, int nhid);
|
|
|
|
extern void xtfree(Tinn);
|
|
|
|
#endif
|