Skip to content

The project contains an implementation of Bagging Classifier from scratch without the use of any inbuilt libraries.

License

Notifications You must be signed in to change notification settings

Sarthak-10/Bagging-Classifier-from-scratch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bagging-Classifier-from-scratch

Open In Colab

Please star the repository if you happen to like the project

The ipynb file contains the solution to the attached Problem Statement.

It contains an implementation of Bagging Classifier from scratch.

About Bagging Classifier:

image

Bootstrap Aggregation, or Bagging for short, is an ensemble machine learning algorithm.

Specifically, it is an ensemble of decision tree models, although the bagging technique can also be used to combine the predictions of other types of models.

As its name suggests, bootstrap aggregation is based on the idea of the “bootstrap” sample.

A bootstrap sample is a sample of a dataset with replacement. Replacement means that a sample drawn from the dataset is replaced, allowing it to be selected again and perhaps multiple times in the new sample. This means that the sample may have duplicate examples from the original dataset.

The bootstrap sampling technique is used to estimate a population statistic from a small data sample. This is achieved by drawing multiple bootstrap samples, calculating the statistic on each, and reporting the mean statistic across all samples.

You can read more about Bagging here

About

The project contains an implementation of Bagging Classifier from scratch without the use of any inbuilt libraries.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published