You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-5Lines changed: 30 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,18 +9,18 @@
9
9
</p>
10
10
11
11
<ul>
12
-
<li> ➤ Fuzzy C-Means: </li>
13
-
<li> ➤ Gustafason-Kessel: </li>
12
+
<li> ➤ Fuzzy C-Means </li>
13
+
<li> ➤ Gustafason-Kessel </li>
14
14
</ul>
15
15
16
-
<h3> Theoritical Generlized Description of the Fuzzy Algorithm </h3>
16
+
<h3> Theoritical General Description of the Fuzzy Algorithm </h3>
17
17
18
-
<p> Fuzzy Clustering is a form of clustering in which each data point can belong to more than one cluster it involves assigning data points to clusters such that items in the same cluster are as similar as possible while items belonging to different clusters are as dissimiliar as possible.Clusters are identified via similarity measures.Different similarity measures may be used, in this implementation the euclidean distance and Mahalanobis distance are used.
18
+
<p> Fuzzy Clustering is a form of clustering in which each data point can belong to more than one cluster it involves assigning data points to clusters such that items in the same cluster are as similar as possible while items belonging to different clusters are as dissimiliar as possible.Clusters are identified via similarity measures.Different similarity measures may be used, in this implementation the euclidean distance and Mahalanobis distance are used.
19
19
</p>
20
20
21
21
<h3> Comparison to hard Clustering </h3>
22
22
<p>
23
-
in non-fuzzy clustering, data is divided into distinct clusters, where each data point can only belong to exactly one cluster.In Fuzzy clustering can potentially belong to multiple clusters.
23
+
in non-fuzzy clustering, data is divided into distinct clusters, where each data point can only belong to exactly one cluster.In Fuzzy clustering, data points can potentially belong to multiple clusters.
24
24
</p>
25
25
26
26
<h3> The Algorithm: </h3>
@@ -33,3 +33,28 @@ in non-fuzzy clustering, data is divided into distinct clusters, where each data
33
33
<li> Repeat step number 2 Until Convergence or reaching maximum number of iterations allowed</li>
34
34
</ol>
35
35
36
+
37
+
<h2id="How to Install"> :floppy_disk: How to Install </h2>
38
+
39
+
40
+
<p> before installing the package its highly recommended that you create a virtual environment, there are many tools which are capable of that, such as conda , venv ...etc.
41
+
here is an example of doing so using virtualenv: </p>
42
+
43
+
<p> first you install virtualenv </p>
44
+
<pre><code>$ pip install virtualenv </code></pre>
45
+
46
+
<p> and then create a folder where you can create your environment and cd into it and then execute the following command: </p>
0 commit comments