Posts from Python

Create a Simple Recurrent Neural Network using Kears

By Ripan Purkait

In this tutorial, we will explore the architecture and inner workings of RNNs, understand the concept of recurrent layers, and build a basic RNN model using Keras. What is RNN RNN.... Read More

Program to print all the LEADERS in an array in Python

By Meetali Tomer

In this tutorial, we will learn how to find all the leaders in the array. Leader— An element of an array is called a leader if there is no element greater than it to the righ.... Read More

Convert Numpy Array into Keras Tensor

By Ripan Purkait

In this blog, we will explore the process of converting a Numpy array to a Keras tensor. Converting Numpy arrays to TensorFlow tensors is essential for seamlessly integrating Numpy.... Read More

Optical Character recognition using Deep Learning (CNN)

By Ripan Purkait

Our OCR (Optical Character Recognition) project aims to develop a robust and efficient system to detect characters and digits from an image. We are going to use Keras deep learning.... Read More

Address Calculation Sort in Python using hashing

By Rashi Singh

In this tutorial, we will learn about Address Calculation Sort in Python which is done using ‘hashing’. Address Calculation Sort In Address Calculation Sorting algorith.... Read More

Count Number of Object from an image using OpenCV in Python

By Sk Samiul Islam

In this tutorial, we learn how to count the number of objects in an image or video using OpenCV in Python. What is OpenCV OpenCV is a Python library that allows you to perform comp.... Read More

Face Comparison in Python with similarity using Face++ API

By Harshil Gupta

Python is a wonderful language that has its application in all domains of development like machine learning, computer vision, data analytics, image processing, etc. Image processin.... Read More

Find Frequency of each element in an unsorted array in Python

By Amruth Kumar

In this tutorial, we are going to learn how to find the frequency of each element in an unsorted array in Python. For finding frequencies dictionaries can be used. You can check: .... Read More

Related Posts