idk
Joseph Redmon
2016-01-18 1578ec70d751231218c869d345404ea68be9e5e8
src/convolutional_layer.h
@@ -6,6 +6,7 @@
#include "image.h"
#include "activations.h"
#include "layer.h"
#include "network.h"
typedef layer convolutional_layer;
@@ -30,7 +31,7 @@
void backward_convolutional_layer(convolutional_layer layer, network_state state);
void bias_output(float *output, float *biases, int batch, int n, int size);
void add_bias(float *output, float *biases, int batch, int n, int size);
void backward_bias(float *bias_updates, float *delta, int batch, int n, int size);
image get_convolutional_image(convolutional_layer layer);