Posts from Python

Thompson Sampling for Multi-Armed Bandit Problem in Python

By Sakshi Gawande

We’re going to look at different ways that we can solve the multi-armed bandit problem in Python. Let us first understand what is a multi-armed Bandit. A one-armed bandit is .... Read More

Build Differentially private Machine Learning Models Using TensorFlow Privacy

By Yash Gandhi

In the computer world, there are lots of data that required user wise privacy. The privacy of data and their protection are very essential for everyone. Day by day when data increa.... Read More

Sports Predictor using Python in Machine Learning

By Yash Gandhi

Prediction means to make an estimate of the future and on which base prepare a plan to achieve a goal. Recent technology of computers very useful to predict the future and to make .... Read More

Develop A Neural Network That Can Read Handwriting

By Sumit Singh

In this tutorial, we shall learn to develop a neural network that can read handwriting with python. For this tutorial, we shall use the MNIST dataset, this dataset contains handwri.... Read More

How to rotate an array in Python

By Abhinav Chandra

In this tutorial, we will see how to rotate an array in Python by a given number of elements. Rotating an array is a process involving the shifting of the elements by n positions. .... Read More

Python: Line Detection using hough transform

By Mayank Bhandari

In this tutorial, we will learn how to detect line using Hough Transform in Python. But let’s first try to understand what is Hough Transform.  Hough Transform is a method w.... Read More

Job Sequencing Problem using Greedy method in Python

By Saumitra Deshpande

In this blog, we are going to see how we can solve the Job Sequencing Problem using the greedy method in Python. We are going to do this in Python language. An array of jobs is giv.... Read More

Usage of variables starting with underscore in Python

By Suchita Sriramka

This article explains the different patterns and uses of underscores in Python. We all know basic variable naming rules in Python – start with an alphabet or underscore, cannot s.... Read More

Related Posts