Starting on the model.h, but need to make layer structs and structs for loss and optimizers
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
|
||||
#include "utils/vector.h"
|
||||
#include "utils/matrix.h"
|
||||
#include "modules/neural_networks/layers/Layer.h"
|
||||
|
||||
#include "numerics/max.h"
|
||||
#include "numerics/sub.h"
|
||||
@@ -15,7 +16,7 @@
|
||||
namespace neural_networks{
|
||||
|
||||
template <typename T>
|
||||
struct Activation_Softmax{
|
||||
struct Activation_Softmax : Layer<T>{
|
||||
|
||||
//utils::Matrix<T> exp_values;
|
||||
//utils::Matrix<T> probabilities;
|
||||
|
||||
Reference in New Issue
Block a user