GitXplorerGitXplorer
A

ai-cpp

public
2 stars
1 forks
0 issues

Commits

List of commits on branch main.
Unverified
38d20712d6e6fa6eac05707f3956b7859c0bef22

update

AAugustinMauroy committed 24 days ago
Unverified
dadde531cf268c0128fde636dc301fec608d1d92

update

AAugustinMauroy committed 5 months ago
Verified
64fdb5fda20fe61dc7d88ff3f5f7f729fb77fe9b

update logic (#1)

AAugustinMauroy committed 5 months ago
Unverified
a0c525e95cae1c6c8fda6a9e7bb90420c35b884e

feat: cifar-100

AAugustinMauroy committed 6 months ago
Unverified
a80d53db3656f985d53ac924a1919aedd0eabf12

fix: AI

AAugustinMauroy committed 6 months ago
Unverified
04ee24741197199bd7224703f7cee96dd24b64ee

chore(docs): update

AAugustinMauroy committed 6 months ago

README

The README file for this repository.

AI-CPP

A simple neural network implementation in C++.

[!IMPORTANT]
This project is learning/discovering oriented.

Build

This project require LLVM installed on your system.

[!NOTE]
It's build with standard C++17 library. So you don't need to install any other library.

# xor example
g++ -std=c++17 -o xor_neural_network xor.cpp && ./xor_neural_network
# angles example
g++ -std=c++17 -o angles_neural_network angles.cpp && ./angles_neural_network
# mnist example
g++ -std=c++17 -o mnist_neural_network mnist.cpp && ./mnist_neural_network
# iris example
g++ -std=c++17 -o iris_neural_network iris.cpp && ./iris_neural_network
# cifar-100 example need curl and tar
cd dataset
curl -O https://www.cs.toronto.edu/~kriz/cifar-100-binary.tar.gz
tar -xvf cifar-100-binary.tar.gz
rm cifar-100-binary.tar.gz
cd ../
g++ -std=c++17 -o cifar-100_neural_network cifar-100.cpp && ./cifar-100_neural_network

Neural Network lib