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
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
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
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
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
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
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
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