Skip to content
Snippets Groups Projects
Select Git revision
  • fb477c854edde35376ddd6badedd9fae7c12e915
  • main default protected
2 results

image-classification

Danjou's avatar
Danjou Pierre authored
fb477c85
History

TD1 - Image classification - DANJOU Pierre

INTRODUCTION

The objective of this tutorial is to write a complete image classification program in Python. 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

K-Nearest Neighbors (KNN)

All the code can be found on the python file knn.py

Artificial Neural Network