A picture is worth a thousand words! As computer vision and machine learning experts, we could not agree more. Human intuition is the most powerful way of making sense out of random chaos, ...
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 ...
Autoencoders Explored: Understanding and Implementing Denoising Autoencoders with Tensorflow (Python)
In this article, we will learn about autoencoders in deep learning. We will show a practical implementation of using a Denoising Autoencoder on the MNIST handwritten digits dataset as an example. In ...
Implementing an MLP in TensorFlow & Keras
In this post, we will introduce several new concepts associated with the general problem of classification involving more than two classes. This is sometimes referred to as multinomial regression or ...