In our recent post about receptive field computation, we examined the concept of receptive fields using PyTorch. We learned receptive field is the proper tool to understand what the network 'sees' ...
How to Convert a Model from PyTorch to TensorRT and Speed Up Inference
The life of a machine learning engineer consists of long stretches of frustration and a few moments of joy! First, struggle to get your model to produce good results on your training data. You ...
Zero-shot Learning : An Introduction
Deep learning based models have achieved the state of the art performance for image recognition and object detection tasks in the recent past. Many of these models are able to achieve human level ...
Federated Learning using PyTorch and PySyft
This is a a gentle introduction to federated learning --- a technique that makes machine learning more secure by training on decentralized data. We will also cover a real-life example of federated ...
Getting Started with PyTorch Lightning
Imagine, one day you have an amazing idea for your machine learning project. You write down all the details on a piece of paper- the model architecture, the optimizer, the dataset. And now you just ...
Ensuring Training Reproducibility in PyTorch
Imagine you trained a deep learning model on some dataset. A few days later, you want to reproduce the same experiment, but if you were not careful, you may never be able to reproduce the same ...