This repository contains all resources of my talk in SWB's Data Science Bootcamp for University of Lagos.
Topics covered:
- Basic image processing, understanding 3d scenes
- Introduction to supervised learning in the CV domain
- How to interpret vision models
- Advances in supervised learning in the CV domain
You will find the main presentation in cv_bootcamp.ipynb. To run this presentation on colab, please use this link. If you are visiting after the talk, you can just read through the notebook, and you won't miss a thing!
To run this on your local system, use the following steps:
git clone https://github.com/cybershiptrooper/CV_bootcamp_SWB.git
cd CV_bootcamp_SWB/resources
source get_cifar10.sh
You will need pytorch, numpy and matplotlib to run the notebook.
Misc:
Bonus exercises are listed under the bonus_exercises folder. It consists of two exercises:
- Implementing Convolutions for multiple RGB images
- Implementing the attention mechanism you learnt in the last session
Both using numpy
Solutions and other resources can be found under resources. Apart from the datasets used, it has all the auxiliary notes, solutions to exercises in the notebook and some useful utilities to train on cifar 10.