Scikit-Learn : Classification with Naïve Bayes
In this guide, we will discuss Classification with Naïve Bayes in Scikit-Learn. Naïve Bayes methods are a set of supervised learning algorithms based on applying Bayes’ theorem with a strong…
In this guide, we will discuss Classification with Naïve Bayes in Scikit-Learn. Naïve Bayes methods are a set of supervised learning algorithms based on applying Bayes’ theorem with a strong…
In this guide, we will discuss RadiusNeighborsClassifier in Scikit-Learn. The Radius in the name of this classifier represents the nearest neighbors within a specified radius r, where r is a…
In this guide, we will discuss KNeighborsClassifier in Scikit-Learn. The K in the name of this classifier represents the k nearest neighbors, where k is an integer value specified by…
In this chapter , We will discuss KNN Learning in Scikit-Learn. k-NN (k-Nearest Neighbor), one of the simplest machine learning algorithms, is non-parametric and lazy in nature. Non-parametric means that…
This chapter we will discuss K-Nearest Neighbors (KNN) and help you in understanding the nearest neighbor methods in Sklearn. Neighbor based learning method are of both types namely supervised and unsupervised. Supervised neighbors-based learning…
Here, we will learn about what is anomaly detection in Sklearn and how it is used in identification of the data points. Anomaly detection is a technique used to identify…
This chapter deals with a machine learning method termed as Support Vector Machines (SVMs). Introduction Support vector machines (SVMs) are powerful yet flexible supervised machine learning methods used for classification,…
Here, we will learn about an optimization algorithm in Sklearn, termed as Stochastic Gradient Descent (SGD). Stochastic Gradient Descent (SGD) is a simple yet efficient optimization algorithm used to find…
This chapter, we will discuss Extended Linear Modeling and focusses on the polynomial features and pipelining tools in Sklearn. Introduction to Polynomial Features Linear models trained on non-linear functions of…
Multi Task Elastic Net It is an Elastic-Net model that allows to fit multiple regression problems jointly enforcing the selected features to be same for all the regression problems, also…