Image Classification involves around extraction of classes from all the pixels in a digital image. In this story, we are going into classify the images from cifar100 dataset using Convolutional Neural Networks.
Before going further into the story, I would like to thank jovian ai for providing opportunity to everyone who want to learn something new at no cost. You can visit their site here.
Now let’s get into it.
The idea between convolutions is the use of image kernel. …
An short introduction about PyTorch and the chosen functions.
What do you want to know about Pytorch?
PyTorch is an open source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing, primarily developed by Facebook’s AI Research lab (FAIR). It is free and open-source software released under the Modified BSD license.
How do you install Pytorch?
For windows,
!pip install numpy torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
For MAC OS,
!pip install numpy torch torchvision torchaudio
For Linux,
!pip install numpy torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
…