2013-11-04 23:11:01 +04:00
|
|
|
#ifndef CONVOLUTIONAL_LAYER_H
|
|
|
|
#define CONVOLUTIONAL_LAYER_H
|
|
|
|
|
2015-01-23 03:38:24 +03:00
|
|
|
#include "cuda.h"
|
2015-03-12 08:20:15 +03:00
|
|
|
#include "params.h"
|
2013-11-04 23:11:01 +04:00
|
|
|
#include "image.h"
|
2013-11-13 22:50:38 +04:00
|
|
|
#include "activations.h"
|
2015-05-11 23:46:49 +03:00
|
|
|
#include "layer.h"
|
2013-11-04 23:11:01 +04:00
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
typedef layer convolutional_layer;
|
2013-11-04 23:11:01 +04:00
|
|
|
|
2014-05-10 02:14:52 +04:00
|
|
|
#ifdef GPU
|
2015-03-12 08:20:15 +03:00
|
|
|
void forward_convolutional_layer_gpu(convolutional_layer layer, network_state state);
|
|
|
|
void backward_convolutional_layer_gpu(convolutional_layer layer, network_state state);
|
2015-03-22 19:56:40 +03:00
|
|
|
void update_convolutional_layer_gpu(convolutional_layer layer, int batch, float learning_rate, float momentum, float decay);
|
2015-02-10 00:27:58 +03:00
|
|
|
|
2014-10-25 22:57:26 +04:00
|
|
|
void push_convolutional_layer(convolutional_layer layer);
|
2015-01-13 04:27:08 +03:00
|
|
|
void pull_convolutional_layer(convolutional_layer layer);
|
2015-02-10 00:27:58 +03:00
|
|
|
|
|
|
|
void bias_output_gpu(float *output, float *biases, int batch, int n, int size);
|
|
|
|
void backward_bias_gpu(float *bias_updates, float *delta, int batch, int n, int size);
|
2014-05-10 02:14:52 +04:00
|
|
|
#endif
|
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
convolutional_layer make_convolutional_layer(int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation);
|
2015-02-11 06:41:03 +03:00
|
|
|
void resize_convolutional_layer(convolutional_layer *layer, int h, int w);
|
2015-03-12 08:20:15 +03:00
|
|
|
void forward_convolutional_layer(const convolutional_layer layer, network_state state);
|
2015-03-22 19:56:40 +03:00
|
|
|
void update_convolutional_layer(convolutional_layer layer, int batch, float learning_rate, float momentum, float decay);
|
2014-04-11 12:00:27 +04:00
|
|
|
image *visualize_convolutional_layer(convolutional_layer layer, char *window, image *prev_filters);
|
2014-01-28 11:16:56 +04:00
|
|
|
|
2015-03-12 08:20:15 +03:00
|
|
|
void backward_convolutional_layer(convolutional_layer layer, network_state state);
|
2013-11-13 22:50:38 +04:00
|
|
|
|
2015-02-10 00:27:58 +03:00
|
|
|
void bias_output(float *output, float *biases, int batch, int n, int size);
|
|
|
|
void backward_bias(float *bias_updates, float *delta, int batch, int n, int size);
|
|
|
|
|
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
|
|
|
|
2015-01-23 03:38:24 +03:00
|
|
|
int convolutional_out_height(convolutional_layer layer);
|
|
|
|
int convolutional_out_width(convolutional_layer layer);
|
|
|
|
|
2013-11-04 23:11:01 +04:00
|
|
|
#endif
|
|
|
|
|