Posts from Python

Tensorflow Placeholders in Python

By Abuzer Malvi

Tensorflow placeholder() as the name suggests creates a placeholder for a tensor that will be fed later. In simple words, it allocates a block of memory for future use which allows.... Read More

Python and the Principle of Least Astonishment

By Mallika Gupta

In this tutorial post, we will learn about what actually Principle of Least Astonishment (POLA) is in Python. We would understand its general meaning and how we use this concept in.... Read More

YOLO Object Detection from image with OpenCV and Python

By Anubhav Aery

In this tutorial, we will be learning how to use Python and OpenCV in order to detect an object from an image with the help of the YOLO algorithm. We will be using PyCharm IDE to s.... Read More

Draw a frequency histogram in Python

By Abul Hassan

In this tutorial, we learn how to draw a frequency histogram in Python. Frequency histograms are used to represent the frequency or count of an outcome in a data set. Frequency his.... Read More

Univariate Linear Regression in Python

By Om Avhad

Hi! Today, we’ll be learning Univariate Linear Regression with Python. This is one of the most novice machine learning algorithms. Univariate Linear Regression is a statistic.... Read More

Calculate Poker probabilities in Python

By Rudramani Dubey

When we talk about Poker, we require to analyze the world of shuffled decks.  Basically it belongs to the discrete probability domain. Discussing shuffle, permutation, and combina.... Read More

Concept of Map vs List Comprehension in Python

By Rituparna Mukherjee

Suppose you want to execute a code where you want to define a function in a single line to make your code look simpler in that case you can use List Comprehension or Map() function.... Read More

Binning method for data smoothing in Python

By ZAKIR ALI

In this tutorial, we’ll learn about the Binning method for Data smoothing in Python. Binning is a technique for data smoothing that involves dividing your data into ranges, or bi.... Read More