|
Neural Network
Generic Neural Network for Classification
|
Network object the network object acts as a layer between the user and the input,hidden, and output layers. More...
#include <network.h>

Public Member Functions | |
| Network (int _num_layers, int _input_unit, int _layer_unit, int _output_unit) | |
| Constructor that calls _init_network. | |
| matrix * | affine_forward (matrix *a, Layer *layer) |
| matrix * | relu_forward (matrix *z) |
| matrix * | cross_entropy (matrix *f, matrix *a) |
| void ** | affine_backward (matrix *df, matrix *a, Layer *layer) |
| matrix * | relu_backward (matrix *df, matrix *a_prev) |
| int | import_data (std::string filename) |
| int | train_network () |
| void | test () |
Network object the network object acts as a layer between the user and the input,hidden, and output layers.
1.8.11