In this blog post, we are going to learn about the Vision Transformer (ViT). It is a pure Transformer based architecture used for image classification […]
MODNet: Real-Time Trimap-Free Portrait Matting via Objective Decomposition
In this work, we present a lightweight matting objective decomposition network (MODNet) for portrait matting in real-time with a single input image. MODNet inputs a […]
VGG19 UNET Implementation in TensorFlow
In this tutorial, we are going to implement the U-Net architecture in TensorFlow, where we will replace its encoder with a pre-trained VGG19 architecture. The […]
Why Deep Learning is not Artificial General Intelligence (AGI)
With the development in the field of deep learning, it has become a frontier in solving multiple challenging problems in computer vision, games, self-driving cars […]
PP-LiteSeg: A Superior Real-Time Semantic Segmentation Model
PP-LiteSeg is a lightweight encoder-decoder architecture designed for real-time semantic segmentation. It consists of three modules: Encoder: Lightweight network Aggregation: Simple Pyramid Pooling Module (SPPM) […]
Deep Learning based Background Removal from Images using TensorFlow and Python
In this tutorial, we are going to learn how to use deep learning to remove background from images with TensorFlow. In short, we’ll use DeepLabV3+, […]
UDP Client-Server Implementation in C
There are two major communication protocols: TCP and UDP. These protocols are used to transport data between the client and the server. In one of […]
Custom Layer in TensorFlow using Keras API
The majority of the people interested in deep learning must have used the TensorFlow library. It is the most popular and widely used deep learning […]
VGG16 UNET Implementation in TensorFlow
In this article, we are going to implement the most widely used image segmentation architecture called UNET. We are going to replace the UNET encoder […]
Squeeze and Excitation Implementation in TensorFlow and PyTorch
The Squeeze and Excitation network is a channel-wise attention mechanism that is used to improve the overall performance of the network. In today’s article, we […]