diff --git a/README.md b/README.md index 1ebe9c8574c4ba138297fdfd235df2296059f2e2..4bd266fb82f62db7ce26f51dd7c116a4bc8f31d4 100644 --- a/README.md +++ b/README.md @@ -7,33 +7,25 @@ The objective of this tutorial is to write a complete image classification progr Two classification models will be successively developed and tested: k-nearest neighbors (KNN) and neural networks (NN). ## Prepare the CIFAR dataset - First of all, we had to prepare the CIFAR dataset. All the code can be found on the python file read_cifar.py -1° - -2° - -3° - -4° ## K-Nearest Neighbors (KNN) All the code can be found on the python file knn.py -1° +Here is the graph of the accuracy of my knn code epending on the value of k for the Cifar dataset with a split factor of 0.9: +`` -2° - -3° - -4° +## Artificial Neural Network +### Maths +1° -## Artificial Neural Network + +### Code