Tag: PyTorch

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 […] ...