BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
neural_networks.h
Go to the documentation of this file.
1 
2 /*
3  * BCNN_Global_Unifier.h
4  *
5  * Created on: Jun 28, 2018
6  * Author: joseph
7  */
8 
9 #ifndef BLACKCATTENSORS_NEURALNETWORKS_NETWORKNETWORKS_H_
10 #define BLACKCATTENSORS_NEURALNETWORKS_NETWORKNETWORKS_H_
11 
12 #include "common.h"
13 #include "functions/functions.h"
14 
15 #include "layer_cache.h"
16 #include "layer_loader.h"
17 #include "layer_manager.h"
18 #include "layer_chain.h"
19 
21 #include "optimzers/adam.h"
22 #include "optimzers/momentum.h"
23 
24 #include "layers/layer_traits.h"
25 #include "layer_cache.h"
26 #include "layers/feedforward.h"
27 #include "layers/unaryfunction.h"
28 #include "layers/nonlinear.h"
29 #include "layers/softmax.h"
30 #include "layers/lstm.h"
31 #include "layers/output_layer.h"
33 #include "layers/convolution.h"
34 #include "layers/max_pooling.h"
35 #include "layers/flatten.h"
36 #include "layers/recurrent.h"
37 #include "network.h"
38 
39 #endif