mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
13 lines
147 B
C
13 lines
147 B
C
#ifndef PARAMS_H
|
|
#define PARAMS_H
|
|
|
|
typedef struct {
|
|
float *truth;
|
|
float *input;
|
|
float *delta;
|
|
int train;
|
|
} network_state;
|
|
|
|
#endif
|
|
|