K-Means and Fuzzy C-Means Clustering
- Requirements
- Python version 3.10 or higher
- Jupyter Notebook
-
load in the cluster data set txt file
-
Change the hyper parameters
r = 10 # How Many times to run the algorithm K = 3 # How many cluster's
-
Run the K-Means code block
-
Visualize the K-Means plot
-
Load or Use the previous cluster data set txt file from K-Means
-
Change the hyper parameters
r = 10 # How Many times to run the algorithm C = 5 # number of clusters m = 2 # Fuzzifier with m being atleast (m > 1) - clarity of the classification between groups
-
Run the C-Means code block
-
Visualize the Fuzzy C-Means plots