Smile detection using OpenCV Python

By Harsh Parmar

In this tutorial, we will learn how to detect a smile in the face using Python OpenCV library. To achieve this we are using a trained model for smile and face. You can find both th.... Read More

Create a certificate using Python PIL

By Priya Bansal

Today, we’ll create a certificate using Python PIL. Generally, creation of certificate requires manual work, but Python’s pillow module can save all effort! Feed a samp.... Read More

Distance function in C++

By Muskaan Singla

In this article, we will learn about the Distance function in C++. This function is a part of the standard template library. It helps us to calculate the number of elements present.... Read More

Group words with same set of characters in C++

By Muskaan Singla

Think that, we have a group of words. Our aim is to group words with the same set of characters in C++. Assuming that only lower case alphabets are present, for example: INPUT: { h.... Read More

Machine Learning | Customer Churn Analysis Prediction

By Ashutosh Khandelwal

Hello folks! In this article, we are going to see how to build a machine learning model for Customer Churn analysis Prediction. Basically customer churning means that customers sto.... Read More

Boruvka’s algorithm for Minimum Spanning Tree in Python

By Jaspreet Singh

Hello coders, In this tutorial, we are going to study about Boruvka’s algorithm in Python. It is used to find the minimum spanning tree. First of all, let’s understand .... Read More

How to convert a HashMap to TreeMap in Java

By Shivam Purohit

Hello programmers, in this tutorial you will learn how to convert a HashMap to TreeMap in Java. In this tutorial, you will be mainly using the putAll() method for converting and st.... Read More

Normalize features in TensorFlow with Python

By Shagun Bidawatka

In Machine Learning, we perform normalization on our dataset to change the numeric columns values present in the dataset. The goal is to get a common scale and get the values in a .... Read More

Related Posts