Jovian
Sign In
Learn practical skills, build real-world projects, and advance your career

"Learn how to classify 250 bird species using deep learning! Install the required libraries and download the dataset with ease. Explore the data and get started with image classification. #deeplearning #imageclassification"

250 Bird Species Image Classification

!pip install jovian --upgrade --quiet

Let's begin by installing and importing the required libraries.

# Uncomment and run the appropriate command for your operating system, if required
# No installation is reqiured on Google Colab / Kaggle notebooks

# Linux / Binder / Windows (No GPU)
# !pip install numpy matplotlib torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html

# Linux / Windows (GPU)
# pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
 
# MacOS (NO GPU)
# !pip install numpy matplotlib torch torchvision torchaudio
!pip install opendatasets --upgrade --quiet