# Import statement
from hottbox.datasets import make_clusters
make_clusters
(dims, centers=5, n_samples=1000, center_bounds=(-10.0, 10.0), std=0.5, return_centers=False)[source]¶Generates a tensor of any dimension with isotropic gaussian blobs as clusters
specifies the order of the tensor
Specifies the size of each clusters
The number of clusters in the dataset and their size (can be a list)
Specifies the bound (min, max) for generating the centers
The standard deviation of each of the generated clusters
Returns the positions of the centroids
Generated tensor according to the parameters specified