OCR / XOR / NN / network_xor.h
network_xor.h
Raw
#ifndef NETWORK_XOR_H
#define	NETWORK_XOR_H

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

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

void XOR();

#endif