Category Python Modules

Modules is one of the best feature of Python. Except some core modules, you can install what you need and keep your Python setup smooth.

Bingo! Implementation in Python

BINGO!

Bingo is one of the most popular games played by almost every kid in school. It is even liked by adults as it is played in many community gatherings, parties, and so on. There are many variants of this game,…

Calculating Gaussian Kernel Matrix Using Numpy

Calculating Gaussian Kernel Matrix Using Numpy

In the domain of machine learning and pattern re­cognition, a square matrix called the Gaussian ke­rnel matrix, also known as a radial basis function (RBF) kernel matrix, holds gre­at significance. Its purpose is to repre­sent the degre­e of similarity or…

Python Read JSON File and Modify

Python Read JSON File And Modify

One of the most popular formats for storing data is JSON, which is also known as JavaScript Object Notation. The data is stored in key-value pairs, much like the Python dictionary. It has a fast processing rate and is lightweight,…

What Is Cross Entropy In Python?

What Is Cross Entropy In Python

Cross entropy is a differentiative measure between two different types of probability. Cross entropy is a term that helps us find out the difference or the similar relation between two probabilities. There are two different types of distributions in any…

Mastering NumPy’s Powerful einsum_path( ) Function

Numpy Einsum Path

Einsum is an almighty function from the numpy library which is the most efficient manipulator of n-dimensional arrays. It can perform umpteen functions such as adding, multiplying or rearranging the input arrays in a jiffy, resulting in multiple x’s faster…