88227a38fc
Started on implementing neural network from NNFS. I've done ReLU and stopped at p.104. Softmax is not ready.
9 lines
174 B
C
9 lines
174 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" |