PyTorch Tutorials

pytorch cnn 0

PyTorch CNN

CNN stands for Convolutional Neural Networks. Classification has been a popular application of Machine Learning. CNN models are good at detecting patterns and are therefore employed mostly for problems related to image classification/recognition, such...

torch nn in pytorch 0

Torch.nn in PyTorch

The basic construct of different parts of Neural Networks remains the same for different applications. Therefore it would make little sense to code the standard modules and classes over and over again. PyTorch torch.nn...

pytorch autograd 0

PyTorch Autograd

Autograd is used to compute gradients involving complex functions in a neural network. In building a model, we need to compute the loss, which is the deviation of the predicted output from the given...

pytorch rnn 0

PyTorch RNN

We have all wondered how Google knows what you want to search for even before you complete the sentence. Or how the big companies know the people’s opinions about something only with some reviews...

pytorch linear regression 0

PyTorch Linear Regression

Linear Regression is an ML algorithm that tries to find a linear relationship between the inputs and the outputs of the training set. Then, based on this learned information, it tries to predict the...

pytorch interview questions 0

PyTorch Interview Questions

In this article, you will see some of the top questions with answers on PyTorch. These will help you in clearing the PyTorch Interviews. Let’s start!! Basic PyTorch Interview Questions 1. What is a...

pytorch tensorboard 0

PyTorch Tensorboard

Google originally developed Tensorboard for Tensorflow, and since PyTorch 1.1.0, it has been added to it due to the collaboration with Google’s tensorboard team. It is a visualisation tool which helps us take a...

pytorch image classifier 0

PyTorch Image Classifier Use Case

The availability of data has opened new fronts of research, and owing to the progress in Artificial Intelligence, we have moved way ahead in utilising these data for the purpose of security, marketing, business...