May 2020

OpenAI GPT-3: The successor of OpenAI GPT-2 0

OpenAI GPT-3: The successor of OpenAI GPT-2

The research lab OpenAI has released a preprint arXiv paper, titled “Language Models are Few-Shot Learners” or OpenAI GPT-3, which is a continuation of their previous work entitled “Language Models are Unsupervised Multitask Learners” or GPT-2. As a recap. GPT-2 is a language model based on the transformer architecture with...

0

Building Convolutional Autoencoder using TensorFlow 2.0

We are going to continue our journey on the autoencoders. In this article, we are going to build a convolutional autoencoder using the convolutional neural network (CNN) in TensorFlow 2.0. Let us first revise, what are autoencoders?  Autoencoders are neural networks that attempt to mimic its input as closely as...

Introduction to autoencoder 0

Introduction to Autoencoders

In today’s article, we are going to discuss a neural network architecture called autoencoders. This article is aimed at Machine Learning and Deep Learning beginners who are interested in getting a brief understanding of the underlying concepts behind autoencoders.  So let’s dive in and get familiar with the concept of...

Polyp segmentation sing Unet 12

Polyp Segmentation using UNET in TensorFlow 2.0

In this tutorial, we will learn about how to perform polyp segmentation using deep learning, UNet architecture, OpenCV, and other libraries. We will use a polyp segmentation dataset to understand how semantic segmentation is applied to real-world data. In polyp segmentation, the images with polyp are given to a trained...

beautiful mountain and lake scene 4

File Transfer using TCP Socket in C

In this tutorial, you will learn how to perform a file (data) transfer over a TCP socket in the C programming language. You will see how a client reads the data from a text file sends it to the server and then saves the data back into a text file....