Joseph Redmon
2015-04-10 5a49c1d962895b4b2835ae47201d6b07e669153b
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