24 Layer(
int _input_unit,
int _output_unit);
25 inline friend std::ostream& operator<< (std::ostream &out,
const Layer & layer) {
26 out <<
"_nodes is: " << std::endl;
27 out << *layer._nodes<< std::endl;
28 out <<
"_bias is: " << std::endl;
29 out << *layer._bias << std::endl;
represents a matrix between matrix and vector they are able to be casted into one another ...
Definition: linalg.h:49
Layer object the layer object contains nodes.
Definition: layer.h:22
File containing common linear algebra functions.
represents a vector padding is to make sure that matrix and vector both have the same byte size and a...
Definition: linalg.h:28