Files
Flux/include/modules/neural_networks/neural_networks.h
T
Bausager c164d790db
Sync public mirror / sync (push) Successful in 37s
NNFS p.135
Started on the iteration, not need to rewrite matadd.h and need to make matrandom.h.
2025-10-07 19:06:33 +02:00

15 lines
350 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 "loss/Loss.h" // Base
#include "loss/Loss_CategoricalCrossentrophy.h"