Joseph Redmon
2015-06-09 e63b3a6f912cc2b1f6f00f2a9d342624a06dc3a4
1
2
3
4
5
6
7
8
9
10
11
#ifndef PARAMS_H
#define PARAMS_H
 
typedef struct {
    float *truth;
    float *input;
    float *delta;
    int train;
} network_state;
 
#endif