Classification model to distinguishing images of dogs 🐶 vs cats 🐱 vs pandas 🐼
Dog | Cat | Panda |
---|---|---|
Images of dogs, cats and pandas
Dogs | Cats | Pandas |
---|---|---|
1,000 | 1,000 | 1,000 |
Sources:
- Dogs and Cats from: Kaggle's dogs vs cats
- Pandas from: ImageNet and downloading them manually from URLs
(env) $ python src/download_images_from_url.py -a panda
- Creation of a virtual environments done by executing the command venv
- Command to activate virtual environment
- Install dependencies
- List the libraries installed on your environment
- Do your work!
- When you are done, the command to deactivate virtual environment
$ python3 -m venv env/
$ source env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ pip freeze
(env) $ ...
(env) $ deactivate
- Deep Learning for Computer Vision with Python by Dr. Adrian Rosebrock: https://www.pyimagesearch.com/deep-learning-computer-vision-python-book/