Skip to content
Snippets Groups Projects
Select Git revision
  • 55b08ecce9b1ae9c54ea29f301e9e854622874a3
  • master default protected
  • vS5_2020-2021
3 results

figures

  • Clone with SSH
  • Clone with HTTPS
  • Forked from Derrode Stéphane / INF-TC2
    Source project has a limited visibility.

    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