Posts from Machine Learning

Isolation Forest in Python using Scikit learn

By Prakhar Gupta

Hey all! Today we are going to discuss one of the newest techniques for fraud detection, known as Isolation Forest. This algorithm is quite useful and a lot different from all exis.... Read More

Perceptron Neural Network for Logical “OR” Operation in Python

By Karthik Desingu

This post deals with a short introduction to neural networks. Then, implementation of training a simple perceptron neural network for the logical “or” operation in Pyth.... Read More

Set or Change the Size of a Figure in Matplotlib with Python

By Sachin Rastogi

In this article, we need some basic concept of two python module named as “Matplotlib” and “Numpy”. The main motto of this article is how to change or set t.... Read More

How to set axis range in Matplotlib Python

By Sachin Rastogi

In this article we need basic concept of some module of python such as “Matplotlib” and “Numpy”. In this article we are going to understand how to set the a.... Read More

Polynomial Regression in Python

By Nikhil Govindaraju

In this tutorial, we will learn Polynomial Regression in Python. We have shown the graphical representation for a better understanding. What is polynomial regression? How is polyno.... Read More

Apriori Algorithm in Python

By Malapati Preethi

Hey guys!! In this tutorial, we will learn about apriori algorithm and its implementation in Python with an easy example. What is Apriori algorithm? Apriori algorithm is a classic .... Read More

Detect number of faces from an image in Python using OpenCV

By Bipin Kumar

In this tutorial, We are going to learn an interesting thing which is how to detect the number of faces in an image using OpenCV in Python. This tutorial is a machine learning base.... Read More

Introduction to Dimension Reduction – Principal Component Analysis

By Deepshi Sharma

In this tutorial, we will go through with one of the most important concepts in machine learning called Dimension Reduction – Principal Component Analysis (Also known as PCA .... Read More

Related Posts