e5f8c91be4
Sync public mirror / sync (push) Failing after 24s
Done with SGD and Adagrad, still need to optimize them but they work.
22 lines
516 B
C
22 lines
516 B
C
// #include "./modules/neural_networks/neural_networks.h"
|
|
#pragma once
|
|
|
|
#include "datasets/spiral.h"
|
|
#include "datasets/vertical.h"
|
|
|
|
|
|
#include "layers/Dense_Layer.h"
|
|
|
|
|
|
#include "activation_functions/Activation_ReLU.h"
|
|
#include "activation_functions/Activation_Softmax.h"
|
|
#include "activation_functions/Activation_Softmax_Loss_CategoricalCrossentropy.h"
|
|
|
|
|
|
#include "loss/Loss.h" // Base
|
|
#include "loss/Loss_CategoricalCrossentrophy.h"
|
|
|
|
|
|
#include "optimizers/Optimizer_SGD.h"
|
|
#include "optimizers/Optimizer_Adagrad.h"
|