normalization_layer.h
Go to the documentation of this file.
00001 #ifndef NORMALIZATION_LAYER_H
00002 #define NORMALIZATION_LAYER_H
00003 
00004 #include "image.h"
00005 #include "layer.h"
00006 #include "network.h"
00007 
00008 layer make_normalization_layer(int batch, int w, int h, int c, int size, float alpha, float beta, float kappa);
00009 void resize_normalization_layer(layer *layer, int h, int w);
00010 void forward_normalization_layer(const layer layer, network_state state);
00011 void backward_normalization_layer(const layer layer, network_state state);
00012 void visualize_normalization_layer(layer layer, char *window);
00013 
00014 #ifdef GPU
00015 void forward_normalization_layer_gpu(const layer layer, network_state state);
00016 void backward_normalization_layer_gpu(const layer layer, network_state state);
00017 #endif
00018 
00019 #endif


rail_object_detector
Author(s):
autogenerated on Sat Jun 8 2019 20:26:30