Posts from Python

os.removedirs() method in Python

By Sahil Singh

In this article, we will be looking at the os.removedirs() method in Python of the OS module. Or we can say, how to remove empty directories of a path recursively in Python. Firstl.... Read More

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

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

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

Predicting video game sales using Machine Learning in Python

Predicting video game sales using Machine Learning in Python

By Prantik Sarkar | June 27, 2020

Video games have become immensely popular over the past decade. The global games market in 2019 was estimated at $148.8 billion. In this article, you’ll learn how to implement a Machine Learning model that can predict the global sales of a video game depending on certain features such as its genre, critic reviews, and user […] Read More

Find the closest pair from two sorted arrays in Python

By Vaibhav Maini

In this tutorial, we will learn how to find the closest pair from two sorted arrays in Python with an example. Explaination In this problem we are given two sorted arrays and a num.... Read More