Joseph Redmon
2013-11-06 9b1774bd39d65614cdbd2d4e3815086298008911
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Oh boy, why am I about to do this....
#ifndef NETWORK_H
#define NETWORK_H
 
#include "image.h"
 
typedef enum {
    CONVOLUTIONAL,
    CONNECTED,
    MAXPOOL
} LAYER_TYPE;
 
typedef struct {
    int n;
    void **layers;
    LAYER_TYPE *types;
} network;
 
void run_network(image input, network net);
double *get_network_output(network net);
void learn_network(image input, network net);
void update_network(network net, double step);
image get_network_image(network net);
 
#endif