Spaces:
Runtime error
Runtime error
Benjamin Bossan
commited on
Commit
·
7a8ea79
1
Parent(s):
305364f
Noise dataset now follows number of clusters
Browse files
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.
|
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 |
|