darknet/src/params.h
2015-03-11 22:20:15 -07:00

13 lines
147 B
C

#ifndef PARAMS_H
#define PARAMS_H
typedef struct {
float *truth;
float *input;
float *delta;
int train;
} network_state;
#endif