Machine Learning Articles

Sorted By: Most Recent
Dhanam Parekh Dhanam Parekh
Updated on May 22, 2025

Sorting Algorithms: Slowest to Fastest

A sorting algorithm is an algorithm used to rearrange elements in a list or array based on a specified order. Here's a review of common sorting algorithms and their performance analysis, ranked from slowest to fastest.

Image: Shutterstock / Built In
Satyam Kumar Satyam Kumar
Updated on May 22, 2025

C-Means Clustering Explained

C-means clustering is a clustering technique that groups data points into different clusters and assigns a probability score, allowing a data point to belong to multiple clusters to varying degrees. Here’s how it works and how to install it on Python.

Image: Shutterstock / Built In
Sunny Srinidhi Sunny Srinidhi
Updated on May 22, 2025

Lemmatization in Natural Language Processing (NLP) and Machine Learning

Lemmatization is a text pre-processing technique used in natural language processing (NLP) models to break a word down to its root meaning to identify similarities. It is one of the most common text pre-processing techniques used in NLP.

Image: Shutterstock / Built In
Kurtis Pykes Kurtis Pykes
Updated on May 22, 2025

Cohen’s Kappa Explained

Cohen’s kappa is a statistical metric that measures the reliability of two raters who are evaluating the same thing, accounting for the possibility that they could agree by chance. Here’s how it works and how to calculate it.

Image: Shutterstock / Built In
Akash Desarda Akash Desarda
Updated on May 22, 2025

Understanding the AdaBoost Algorithm

AdaBoost (Adaptive Boosting) is a machine learning boosting technique used as an ensemble method to adjust the weights of training samples and combine multiple weak classifiers into a single strong classifier.

Image: Shutterstock / Built In
Kamil Krzyk Kamil Krzyk
Updated on May 22, 2025

Cost Function of Linear Regression: Deep Learning for Beginners

A cost function in machine learning quantifies the error between a model’s predicted values and actual values, letting us measure how well a model's parameters fit given data. I’ll introduce you to two often-used regression cost functions: MAE and MSE.

Image: Shutterstock / Built In
Francesco Bellelli Francesco Bellelli
Updated on May 22, 2025

The Fascinating World of Voronoi Diagrams

A Voronoi diagram (or Dirichlet tessellation or Thiessen polygons) is a type of tessellation pattern where points on a plane are divided into exactly n number of cells, which enclose a region of the plane that is closest to each point.

Image: Shutterstock / Built In
Sara A. Metwalli Sara A. Metwalli
Updated on May 22, 2025

What Is Data Validation?

Data validation refers to verifying the quality and accuracy of data before using it. These are the main types of data validation, the pros and cons of the process and tips for how to perform data validation.

Image: Shutterstock / Built In
Peter Grant Peter Grant
Updated on May 22, 2025

An Introduction to Bias-Variance Tradeoff

The bias-variance tradeoff describes the inverse relationship between bias and variance, where increasing one decreases the other. Here’s how to strike a balance between the two, so a model learns enough details about a data set without picking up noise.

Image: Shutterstock
Perez Ogayo Perez Ogayo
Updated on May 22, 2025

How to Fix a CUDA Error: Device-Side Assert Triggered in PyTorch

A CUDA Error: Device-Side Assert Triggered can either be caused by an inconsistency between the number of labels and output units in a model or an incorrect input for a loss function. Follow this guide to fix it. 

Image: Shutterstock / Built In