Deep Learning

0

Implementing Linear Regression in TensorFlow

TensorFlow is a powerful library for machine learning that allows for the easy implementation of various algorithms, including linear regression. In this tutorial, we will be using TensorFlow tape gradient to implement a linear regression model and plot the loss graph and x and y on matplotlib. First, we will...

0

What is ChatGPT?

ChatGPT is a state-of-the-art natural language processing model developed by OpenAI. It is based on transformer architecture and is trained on a massive amount of conversational data. In this blog post, we will take a closer look at what ChatGPT is, how it works, and its applications in the field...

0

Activation Function – Basics of Deep Learning

Deep learning is a subset of machine learning that utilizes neural networks with multiple layers to analyze and identify patterns in data. One of the key components of deep learning is the activation function, which is responsible for determining the output of each neuron in the network. In this blog...

MobileViT architecture 0

What is MobileViT?

This article covers an overall summary of the MobileViT: Light-Weight, General-Purpose, and Mobile-Friendly Vision Transformers research paper. MobileViT is a lightweight and general-purpose vision transformer for mobile vision tasks. It combines the strength of the standard CNN (Convolutional Neural Network) and the Vision Transformers. It has outperformed several CNNs and...

Vision Transformer 0

Vision Transformer – An Image is Worth 16×16 Words: Transformers for Image Recognition at Scale

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 tasks. Vision Transformer (ViT) has the ability to replace the standard CNNs while achieving excellent results. The Vision Transformer (ViT) attains excellent results when pre-trained...

MODNet Architecture 0

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 single RGB image and applies explicit constraints to solve matting sub-objectives simultaneously in one stage. The research paper is accepted at AAAI 2022 conference. Research...

A human like robot 0

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 and many more.  Deep learning has even achieved superhuman performance in some tasks, but still, it lacks some fundamental features which are required for a...

0

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+, a semantic segmentation based model to extract the background and foreground mask from the image. We are going to use these masks to extract the...

Implementing Custom layer in TensorFlow 0

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 framework. We have used the different layers provided by the tf.keras API to build different types of deep neural networks. But, there are many times...

VGG16 UNET implementation in TensorFlow 0

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 with the VGG16 implementation from the TensorFlow library. The UNET encoder would learn the features from scratch, while the VGG16 is already trained on the...