Skip to content

Commit 3a8ac54

Browse files
authored
Update clustering.md
1 parent 807d0f3 commit 3a8ac54

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

contrib/machine-learning/clustering.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,6 @@
22

33
Clustering is an unsupervised machine learning technique that groups a set of objects in such a way that objects in the same group (called a cluster) are more similar to each other than to those in other groups (clusters). This README provides an overview of clustering, including its fundamental concepts, types, algorithms, and how to implement it using Python.
44

5-
## Table of Contents
6-
7-
1. [Introduction](#introduction)
8-
2. [Concepts](#concepts)
9-
3. [Types of Clustering](#types-of-clustering)
10-
4. [Clustering Algorithms](#clustering-algorithms)
11-
5. [Implementation](#implementation)
12-
- [Using Scikit-learn](#using-scikit-learn)
13-
- [Code Example](#code-example)
14-
6. [Evaluation Metrics](#evaluation-metrics)
15-
7. [Conclusion](#conclusion)
16-
8. [References](#references)
17-
185
## Introduction
196

207
Clustering is a technique used to find inherent groupings within data without pre-labeled targets. It is widely used in exploratory data analysis, pattern recognition, image analysis, information retrieval, and bioinformatics.
@@ -107,9 +94,3 @@ print(data.head())
10794
## Conclusion
10895

10996
Clustering is a powerful technique for discovering structure in data. Understanding different clustering algorithms and their evaluation metrics is crucial for selecting the appropriate method for a given problem.
110-
111-
## References
112-
113-
- [Scikit-learn Documentation](https://scikit-learn.org/stable/modules/clustering.html)
114-
- [Wikipedia: Cluster Analysis](https://en.wikipedia.org/wiki/Cluster_analysis)
115-
- [Towards Data Science: A Comprehensive Guide to Clustering](https://towardsdatascience.com/a-comprehensive-guide-to-clustering-9789897f8b88)

0 commit comments

Comments
 (0)