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

Noise dataset now follows number of clusters

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ def get_moons(n_clusters):
68
 
69
 
70
  def get_noise(n_clusters):
71
- X, labels = np.random.rand(N_SAMPLES, 2), np.zeros(N_SAMPLES)
72
  return normalize(X), labels
73
 
74
 
 
68
 
69
 
70
  def get_noise(n_clusters):
71
+ X, labels = np.random.rand(N_SAMPLES, 2), np.random.randint(0, n_clusters, size=(N_SAMPLES,))
72
  return normalize(X), labels
73
 
74