Benjamin Bossan commited on
Commit
305364f
·
1 Parent(s): 7c9b8f5

Better description of plots

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -230,7 +230,8 @@ def cluster(dataset: str, n_clusters: int, clustering_algorithm: str):
230
  title = "Clustering with Scikit-learn"
231
  description = (
232
  "This example shows how different clustering algorithms work. Simply pick "
233
- "the dataset and the number of clusters to see how the clustering algorithms work."
 
234
  )
235
 
236
  with gr.Blocks(title=title) as demo:
 
230
  title = "Clustering with Scikit-learn"
231
  description = (
232
  "This example shows how different clustering algorithms work. Simply pick "
233
+ "the dataset and the number of clusters to see how the clustering algorithms work. "
234
+ "Colored cirles are (predicted) labels and black x are outliers."
235
  )
236
 
237
  with gr.Blocks(title=title) as demo: