Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelDiai committed Apr 1, 2021
1 parent b777378 commit 667e6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basic_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def load_dataset_and_sgl(dataset, k, k_sgl, n):
X, y = make_blobs(n_samples=n*k, centers=k, n_features=2, random_state=0, cluster_std=0.6)
n_points = n*k
elif dataset == 'Circles':
X, y = make_circles(n_samples=n)
X, y = make_circles(n_samples=n, factor=.5)
n_points = n
else :
raise ValueError('%s is not a valid dataset ' % dataset)
Expand Down

0 comments on commit 667e6d3

Please sign in to comment.