RamAnanth1 commited on
Commit
85f64f9
·
1 Parent(s): c79b7a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -17,14 +17,13 @@ theme = gr.themes.Monochrome(
17
 
18
  description = f"""
19
  ## Description
20
- This demo can be used to evaluate the ability of k-means initializations strategies to make the algorithm convergence robust as measured by the
21
- relative standard deviation of the inertia of the clustering (i.e. the sum of squared distances to the nearest cluster center).
22
 
23
  The dataset used for evaluation is a 2D grid of isotropic Gaussian clusters widely spaced.
24
 
25
  The Inertia plot shows the best inertia reached for each combination of the model (KMeans or MiniBatchKMeans), and either random initialization or k-means++ initialization.
26
 
27
- The Cluster Allocation plot demonstrates one single run of the MiniBatchKMeans estimator using a single random initialization.
28
 
29
  The demo is based on the [scikit-learn docs](https://scikit-learn.org/stable/auto_examples/cluster/plot_kmeans_stability_low_dim_dense.html#sphx-glr-auto-examples-cluster-plot-kmeans-stability-low-dim-dense-py)
30
  """
 
17
 
18
  description = f"""
19
  ## Description
20
+ This demo can be used to evaluate the ability of k-means initializations strategies to make the algorithm convergence robust as measured by the relative standard deviation of the inertia of the clustering (i.e. the sum of squared distances to the nearest cluster center).
 
21
 
22
  The dataset used for evaluation is a 2D grid of isotropic Gaussian clusters widely spaced.
23
 
24
  The Inertia plot shows the best inertia reached for each combination of the model (KMeans or MiniBatchKMeans), and either random initialization or k-means++ initialization.
25
 
26
+ The Cluster Allocation plot demonstrates one single run of the MiniBatchKMeans estimator using random initialization.
27
 
28
  The demo is based on the [scikit-learn docs](https://scikit-learn.org/stable/auto_examples/cluster/plot_kmeans_stability_low_dim_dense.html#sphx-glr-auto-examples-cluster-plot-kmeans-stability-low-dim-dense-py)
29
  """