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 ...
t-SNE for Feature Visualization
In Machine Learning, we always want to get insights into data: like getting familiar with the training samples or better understanding the label distribution. To do that, we visualize the data in many ...
Multi-Label Image Classification with PyTorch
Back in 2012, a neural network won the ImageNet Large Scale Visual Recognition challenge for the first time. With that Alex Krizhevsky, Ilya Sutskever and Geoffrey Hinton revolutionized the area of ...
CNN Receptive Field Computation Using Backprop
In the previous post, we learned how to classify arbitrarily sized images and visualized the response map of the network. In Figure 1, notice that the head of the camel is almost not ...