In this article, we are going to learn about the Attention UNET and then implement it in the PyTorch framework. Attention UNET is a type […]
Tag: cnn
DeepLabV3+ ResNet50 Architecture in TensorFlow using Keras
In today’s tutorial, we will be looking at the DeepLabV3+ (ResNet50) architecture implementation in TensorFlow using Keras high-level API. Within this architecture, ResNet50 would be […]
What is MultiResUNET?
MultiResUNET is an architecture developed by Nabil Ibtehaz et al. for the purpose of multimodal biomedical image segmentation at the Bangladesh University of Engineering and […]
Human Face Detection using Multi-task Cascaded Convolutional Networks in TensorFlow
In recent years, advances in machine learning and deep learning techniques have revolutionized the field of computer vision. With the help of these techniques, we […]
[Paper Summary] Class-Aware Adversarial Transformers for Medical Image Segmentation
Transformer-based models have shown remarkable progress in the field of medical image segmentation. However, the existing methods still suffer from limitations such as loss of […]
What is U2-Net or U-square Net
U2-Net is a simple and powerful architecture designed for the purpose of salient object detection (SOD). It is a two-level nested U-shaped architecture built using […]
Simple Object Detection with Bounding Box Regression in TensorFlow
Object detection is a fundamental task in computer vision that involves identifying and locating objects within an image or video. In this post, we will […]
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 […]
Human Face Landmark Detection in TensorFlow using Pre-trained MobileNetv2
Today, in this blog post, we will learn how to train a Convolutional Neural Network (CNN) to detect human facial landmarks, such as eyes, mouth, […]
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 […]