darknet/src/convolutional_layer.h

65 lines
1.6 KiB
C
Raw Normal View History

2013-11-04 23:11:01 +04:00
#ifndef CONVOLUTIONAL_LAYER_H
#define CONVOLUTIONAL_LAYER_H
2014-05-10 02:14:52 +04:00
#ifdef GPU
#include "opencl.h"
#endif
2013-11-04 23:11:01 +04:00
#include "image.h"
2013-11-13 22:50:38 +04:00
#include "activations.h"
2013-11-04 23:11:01 +04:00
typedef struct {
2014-03-13 08:57:34 +04:00
int batch;
2013-11-13 22:50:38 +04:00
int h,w,c;
2013-11-04 23:11:01 +04:00
int n;
2013-12-03 04:41:40 +04:00
int size;
2013-11-04 23:11:01 +04:00
int stride;
2014-07-14 09:07:51 +04:00
int pad;
float *filters;
float *filter_updates;
float *filter_momentum;
2014-01-28 11:16:56 +04:00
float *biases;
float *bias_updates;
float *bias_momentum;
2014-01-28 11:16:56 +04:00
float *col_image;
float *delta;
float *output;
2013-11-13 22:50:38 +04:00
2014-05-10 02:14:52 +04:00
#ifdef GPU
cl_mem filters_cl;
cl_mem filter_updates_cl;
cl_mem filter_momentum_cl;
cl_mem biases_cl;
cl_mem bias_updates_cl;
cl_mem bias_momentum_cl;
cl_mem col_image_cl;
cl_mem delta_cl;
cl_mem output_cl;
#endif
2013-12-03 04:41:40 +04:00
ACTIVATION activation;
2013-11-04 23:11:01 +04:00
} convolutional_layer;
2014-05-10 02:14:52 +04:00
#ifdef GPU
void forward_convolutional_layer_gpu(convolutional_layer layer, cl_mem in);
#endif
2014-07-14 09:07:51 +04:00
convolutional_layer *make_convolutional_layer(int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation);
2014-03-13 08:57:34 +04:00
void resize_convolutional_layer(convolutional_layer *layer, int h, int w, int c);
void forward_convolutional_layer(const convolutional_layer layer, float *in);
void update_convolutional_layer(convolutional_layer layer, float step, float momentum, float decay);
image *visualize_convolutional_layer(convolutional_layer layer, char *window, image *prev_filters);
2014-01-28 11:16:56 +04:00
void backward_convolutional_layer(convolutional_layer layer, float *delta);
2013-11-13 22:50:38 +04:00
image get_convolutional_image(convolutional_layer layer);
image get_convolutional_delta(convolutional_layer layer);
2014-01-28 11:16:56 +04:00
image get_convolutional_filter(convolutional_layer layer, int i);
2013-11-04 23:11:01 +04:00
#endif