Starting on the model.h, but need to make layer structs and structs for loss and optimizers
This commit is contained in:
@@ -4,12 +4,12 @@
|
||||
|
||||
#include "utils/vector.h"
|
||||
#include "utils/matrix.h"
|
||||
|
||||
#include "modules/neural_networks/layers/Layer.h"
|
||||
|
||||
namespace neural_networks{
|
||||
|
||||
template <typename T>
|
||||
struct Activation_ReLU{
|
||||
struct Activation_ReLU : Layer<T>{
|
||||
|
||||
utils::Matrix<T> _inputs;
|
||||
utils::Matrix<T> outputs;
|
||||
|
||||
Reference in New Issue
Block a user