Layer default constructor
This commit is contained in:
parent
87d39a705d
commit
627679252f
5
layer.h
5
layer.h
@ -25,8 +25,13 @@ class Layer {
|
|||||||
// Constructors
|
// Constructors
|
||||||
// Input size, Size
|
// Input size, Size
|
||||||
Layer(int, int);
|
Layer(int, int);
|
||||||
|
Layer();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Layer::Layer(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Layer::Layer(int input_size, int size){
|
Layer::Layer(int input_size, int size){
|
||||||
this->input = Matrix(input_size, 1);
|
this->input = Matrix(input_size, 1);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user