From 667e6d305c713abaf40ab332e51509893a58d138 Mon Sep 17 00:00:00 2001 From: SamuelDiai Date: Thu, 1 Apr 2021 15:36:03 +0200 Subject: [PATCH] . --- basic_experiments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_experiments.py b/basic_experiments.py index bc1145f..a397ef1 100644 --- a/basic_experiments.py +++ b/basic_experiments.py @@ -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)