ea359f3b09
I've implemented alot of support functions that needs to be refactored, optimised and tested; mean.h, exponential.h, matdiv.h matsum.h matsubtract.h. Maybe we need to have a look at if matdiv/matmul should be in the same. Same with matadd/matsubtract and if some of it should be in matvec.h.
12 lines
240 B
C
12 lines
240 B
C
// #include "./modules/neural_networks/neural_networks.h"
|
|
#pragma once
|
|
|
|
#include "datasets/spiral.h"
|
|
|
|
#include "layers/dense_layer.h"
|
|
|
|
|
|
#include "activation_functions/ReLU.h"
|
|
#include "activation_functions/Softmax.h"
|
|
|
|
#include "loss/loss.h" |