Layer default constructor

This commit is contained in:
LeLeLeLeto 2024-12-31 01:38:56 +01:00
parent 87d39a705d
commit 627679252f

View File

@ -25,8 +25,13 @@ class Layer {
// Constructors
// Input size, Size
Layer(int, int);
Layer();
};
Layer::Layer(){
}
Layer::Layer(int input_size, int size){
this->input = Matrix(input_size, 1);