OCR / XOR / NN / network.h
network.h
Raw
#ifndef NETWORK_H
#define	NETWORK_H

#include <stdio.h>
#include <time.h>

#include "NN_Tools/load.h"
#include "NN_Tools/layer.h"
#include "NN_Tools/activation.h"
#include "NN_Tools/error.h"

void OCR();

#endif