In this article, we will cover how K-nearest neighbor (KNN) algorithm works and how to run k-nearest neighbor in R. It is one of the most w...
READ MORE
Home » Machine Learning
Showing posts with label Machine Learning. Show all posts
Showing posts with label Machine Learning. Show all posts
Understanding Bias-Variance Tradeoff
This tutorial explains the concept of bias-variance tradeoff in machine learning. It is one of the most commonly confused term in predictiv...
READ MORE
Ensemble Methods in R : Practical Guide
This tutorial explains various ensemble methods in R. Ensembling is one of the most popular method to build accurate predictive models. W...
READ MORE
GBM (Boosted Models) Tuning Parameters
In Stochastic Gradient Boosting Tree models, we need to fine tune several parameters such as n.trees, interaction.depth, shrinkage and n.m...
READ MORE
Dimensionality Reduction with R
In predictive modeling, dimensionality reduction or dimension reduction is the process of reducing the number of irrelevant variables. It i...
READ MORE
A Guide to the predict() Function in R
In this article, we will show you how to make predictions in R with different machine learning models. We will cover a variety of models, in...
READ MORE
R: Apply Weights in Decision Tree and SVM
This tutorial explains how to apply weights in Decision Tree and Support Vector Machine models in R to handle rare event (or class imbalance...
READ MORE
Speeding up random forest with R
If you want to create a random forest model with 500 trees, and your computer has 2 cores, you can execute the randomForest function parall...
READ MORE
Shortcomings in Random Forest Variable Importance
Random Forest is very popular as a variable selection technique. However, it has some drawbacks as well (listed below) : 1. If independ...
READ MORE
Ways to correct class imbalances
There are several ways by which you can overcome class imbalances problem in a predictive model. 1. Adjusting Prior Probabilities P...
READ MORE
How to Calculate Variable Importance using Random Forest in R
Calculating variable importance with Random Forest is a powerful technique used to understand the significance of different variables in a p...
READ MORE
Random Forest on Imbalance Data
In random forest, you can perform oversampling of events without data loss. There are 2 functions in randomForest package for sampling ...
READ MORE
Missing Value Imputations with Random Forest
In most of the predictive model techniques, it is required to impute missing values before training a predictive model. There is a way you ...
READ MORE
CARET Package Implementation in R
In R, there is a package called caret which stands for Classification And REgression Training. It makes predictive modeling easy. It can ru...
READ MORE
Ensemble Learning : Boosting and Bagging
In this article, we will cover the concepts of bagging and boosting. It also includes how Stochastic Gradient Boosting works. Ensemble l...
READ MORE
Subscribe to:
Posts (Atom)