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

image-classification

  • Clone with SSH
  • Clone with HTTPS
  • Danjou Pierre's avatar
    Danjou Pierre authored
    d933e0bc
    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