Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/milaan9/clustering_algorithms_from_scratch

Implementing Clustering Algorithms from scratch in MATLAB and Python
https://github.com/milaan9/clustering_algorithms_from_scratch

cluster cluster-analysis clustering-algorithms clustering-analysis clustering-benchmark clustering-methods clustering-models machine-learning-algorithms subspace-clustering tutor-milaan9 unsupervised-learning

Last synced: 5 days ago
JSON representation

Implementing Clustering Algorithms from scratch in MATLAB and Python

Awesome Lists containing this project

README

        


Last Commit



Stars Badge
Forks Badge
Size
Pull Requests Badge
Issues Badge
Language
MIT License


binder

# Unsupervised Learning
The Unsupervised learning is a branch of machine learning that learns from test data that has not been labeled, classified or categorized. Instead of responding to feedback, unsupervised learning identifies commonalities in the data and reacts based on the presence or absence of such commonalities in each new piece of data.

# Clustering
Clustering or cluster analysis is an unsupervised learning problem. It is often used as a data analysis technique for discovering interesting patterns in data, such as groups of customers based on their behavior. In clustering problems we split the training examples by unknown characteristics. The algorithm itself decides what characteristic to use for splitting.

Usage examples: market segmentation, social networks analysis, organize computing clusters, astronomical data analysis, image compression, etc.