File tree Expand file tree Collapse file tree 1 file changed +26
-3
lines changed Expand file tree Collapse file tree 1 file changed +26
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Implementation of some of the most used Clustering Algorithms from scratch in Python (only using Numpy).
4
4
5
- * ## MeanShift
5
+ * ## MeanShift Clustering
6
6
7
7
### Generated Data
8
8
![ ] ( MeanShift/results/0*generated_data.jpg )
@@ -24,7 +24,30 @@ Implementation of some of the most used Clustering Algorithms from scratch in Py
24
24
* #### Predicted Cluster Centers after 6th Iteration
25
25
![ ] ( MeanShift/results/1*progress_0006_cluster_centers.jpg )
26
26
27
- ### Final Result
27
+ ### Final Mean Shift Clustering Result
28
28
![ ] ( MeanShift/results/3*meanShift_result.jpg )
29
29
30
- * ## xyz ALgo
30
+ * ## kMeans Clustering
31
+
32
+ ### Generated Data
33
+ ![ ] ( kMeans/results/generated_data.jpg )
34
+
35
+ ### Before kMeans
36
+ ![ ] ( kMeans/results/before_kmeans.jpg )
37
+
38
+ ### Predicting Cluster Centers
39
+
40
+ * #### Predicted Cluster Centers after 0th Iteration
41
+ ![ ] ( kMeans/results/iter0.jpg )
42
+
43
+ * #### Predicted Cluster Centers after 4th Iteration
44
+ ![ ] ( kMeans/results/iter4.jpg )
45
+
46
+ * #### Predicted Cluster Centers after 8th Iteration
47
+ ![ ] ( kMeans/results/iter8.jpg )
48
+
49
+ * #### Predicted Cluster Centers after 12th Iteration
50
+ ![ ] ( kMeans/results/iter12.jpg )
51
+
52
+ ### Final kMeans Clustering Result
53
+ ![ ] ( kMeans/results/iter12.jpg )
You can’t perform that action at this time.
0 commit comments