Deep Learning with PyTorch: Image Classification using Neural Networks

In this tutorial, we are going to learn how to carry out image classification using neural networks in PyTorch. Basically, we will build convolutional neural network models for image classification. This is the fourth part of the series, Deep Learning with PyTorch.Part 1: Installing PyTorch and Covering the Basics.Part 2: Basics of Autograd in PyTorch.Part 3: Basics of Neural Network in PyTorch. Part […] ...

Deep Learning with PyTorch: Installing PyTorch and Covering the Basics

PyTorch is an open-source machine learning library. It is based on Torch library but specifically written for Python language. Recently PyTorch has been gaining much more traction and popularity for deep learning research and development alike. The best thing about PyTorch is that it is very python-like and intuitive. If you know the Python programming […] ...

k-Nearest Neighbor: A Practical Approach

In this article, we will take a practical approach to the k-Nearest Neighbor in machine learning. For implementation purposes of the k-Nearest Neighbor, we will use the Scikit-Learn library. We will try a classification problem using KNN. We will try the digit classification using the MNIST dataset. After all, before neural networks, traditional machine learning […] ...