详解sklearn中的make_moons函数

make_moons是函数用来生成数据集,在sklearn.datasets里,具体用法如下:

Parameters:	

n_samples : int, optional (default=100)

    The total number of points generated.
shuffle : bool, optional (default=True)

    Whether to shuffle the samples.
noise : double or None (default=None)

    Standard deviation of Gaussian noise added to the data.
random_state : int, RandomState instance or None (default)

    Determines random number generation for dataset shuffling and noise. Pass an int for reproducible output across multiple function calls. See Glossary.

Returns:	

X : array of shape [n_samples, 2]

    The generated samples.
y : array of shape [n_samples]

    The integer labels (0 or 1) for class membership of each sample.

主要参数作用如下:
n_numbers:生成样本数量
shuffle:是否打乱,类似于将数据集random一下
noise:默认是false,数据集是否加入高斯噪声
random_state:生成随机种子,给定一个int型数据,能够保证每次生成数据相同。
sklearn.datasets.make_moons(n_samples=100, shuffle=True, noise=None, random_state=None)
for example:
X, y = datasets.make_moons(500, noise=0.5)
Ref:
【1】https://scikit-learn.org/stable/modules/generated/sklearn.datasets.make_moons.html

  • 12
    点赞
  • 46
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值