Convert Nested List to Multidimensional NumPy Array in Python

By Faruque Ahamed Mollick

In this tutorial, you are going to learn how to convert nested lists to multidimensional NumPy arrays with the help of simple Python programming. Converting a nested list into NumP.... Read More

Machine Learning | Bias Variance Tradeoff

By Nihar Kalsekar

In this article, we are going to learn the Bias Variance Tradeoff in machine learning. If you master this concept it will greatly help you to understand your Machine Learning model.... Read More

How to fix figure position in LaTeX?

By Parvez Akhtar Pasha

Figures and tables are floating objects in LaTeX. By Default LaTeX tries to put them in the best position around the page. But sometimes we want to position a figure as we want. In.... Read More

One Hot Encoding of datasets in Python

By Nihar Kalsekar

In this tutorial, we will be learning the process of One hot encoding of datasets. One hot encoding transforms our categorical labels into vectors of zeros and ones. However, our r.... Read More

Monte Carlo simulation in Python with few lines of code

By Nihar Kalsekar

In this tutorial, we are going to learn Monte Carlo simulation. It is used to get the estimated probability of different outcomes. This is usually done in processes in which there .... Read More

Box Blur using Python PIL library

By Nihar Kalsekar

In this tutorial, we will be seeing the implementation of  BoxBlur() using the Python Imaging Library(PIL). The development of this Library was stopped in 2011. However many progr.... Read More

Get Position of a GameObject in Unity 3D with C# Script

By Faruque Ahamed Mollick

During the gameplay, it often may be needed to trace the position of an object in Unity 3D programmatically using C# script. For example, in a car racing game, you need to continuo.... Read More

Create a toolbar and add buttons to it in SwiftUI

By Samim

In this tutorial, we will see how to create a toolbar and add buttons to it in SwiftUI. A toolbar is like a row of buttons at the top or bottom of our computer screen or app. It ma.... Read More

Related Posts