Posts from Python

Confusion Matrix and Performance Measures in ML

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about the Confusion Matrix which is a very good way to check the performance of our Machine Learning model. We’ll se.... Read More

LSTM in deep learning

By Sai Ram

Long Short Term Memory(LSTM) is a recurrent neural network(RNN) architecture. It has feedback connections, unlike the other neural networks which have feedforward architecture to p.... Read More

How to convert image into pdf in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert image to pdf file in Python using img2pdf. An image can be of any format with extensions like jpg or png. A pdf is an electronic im.... Read More

Contourf plot in matplotlib using Python

By Sachin Rastogi

In this article, we will learn about the concept of the contourf plot in matplotlib using Python. contourf function uses the current colormaps to fill the spaces between the leve.... Read More

How to create a digital watch in Python

By Rishu Khirwal

In this post, you are going to learn how to create a digital watch in Python. The modules which we are going to use are Tkinter module and Time module. To install Tkinter – O.... Read More

Loan Prediction Project using Machine Learning in Python

By Sanskar Dwivedi

The dataset Loan Prediction: Machine Learning is indispensable for the beginner in Data Science, this dataset allows you to work on supervised learning, more preciously a classific.... Read More

Convert a Dictionary into a List in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert a dictionary into a list in Python with three different methods. A Dictionary is an unordered sequence that is mutable. Certainly, it.... Read More

Handling Missing Data Using Pandas

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about how we can handle missing value or data in a dataset using the Pandas library in Python which allows us to manipulat.... Read More

Related Posts