#pragma once /* * Copyright (C) 2024 Brett Terpstra * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef COSC_4P80_ASSIGNMENT_2_LAYER_H #define COSC_4P80_ASSIGNMENT_2_LAYER_H #include #include namespace assign2 { class layer_t { public: using matrix_t = Eigen::Matrix; using vector_t = Eigen::Matrix; layer_t(const blt::i32 in, const blt::i32 out): in_size(in), out_size(out) {} template vector_t forward(const vector_t & in, ActFunction func = ActFunction{}) { vector_t out; out.resize(out_size, Eigen::NoChange_t{}); out.noalias() = weights.transpose() * in; out.colwise() += bias; return func(out); } private: const blt::i32 in_size, out_size; matrix_t weights{}; vector_t bias{}; }; } #endif //COSC_4P80_ASSIGNMENT_2_LAYER_H