从二元高斯分布生成均值

发布于 2024-08-18 07:06:26 字数 240 浏览 6 评论 0原文

我正在阅读《统计学习要素》ESLII,在第 2 章中,他们有一个高斯混合数据集来说明一些学习算法。为了生成该数据集,他们首先从二元高斯分布 N((1,0)', I) 生成 10 个均值。我不确定他们的意思是什么?

如何从均值为 (1,0) 的二元分布生成 10 个均值?

I am reading Elements of Statistical Learning ESLII and in chapter 2, they have a gaussian mixture data set to illustrate some learning algorithms. To generate this data set, they first generate 10 means from a bivariate gaussian distribution N((1,0)', I). I am not sure what they mean?

How can you generate 10 means from a bivariate distribution having mean(1,0)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抽个烟儿 2024-08-25 07:06:26

从二元高斯分布生成的每个均值只是以与从该分布生成的任何其他随机点完全相同的方式采样的单点。他们使用这些生成的点作为新分布的手段这一事实是无关紧要的。

假设这 10 个均值中的每一个都被用来构造一个新的二元高斯分布。

表示 ~ N( (1,0), I)

其中 ~ 表示从分布中提取的值。由于本例中采样的分布是二元高斯分布,因此采样的每个数据点都将是二维点 (x1, y1)。

从原始分布中采样的每个点都可以用来生成新的分布。

示例:

means = [ (x1,y1), (x2,y2), ..., (x10,y10) ]

构建新的二元高斯分布:

N1((x1,x2), I), N2((x2,y2), I), ..., N10((x10,y10), I)

他们只是使用初始二元高斯分布 N((1,0), I) 作为选择 10 个正态分布的随机均值的简单方法。

Each of the means that are generated from the bivariate Gaussian distribution are simply single points sampled in exactly the same way as any other random points that could be generated from the distribution. The fact that they use these generated points to be the means of new distributions is irrelevant.

Let's say that each of the 10 means is then used to construct a new bivariate Gaussian.

means ~ N( (1,0), I)

Where ~ indicates a value being drawn from the distribution. Since the distribution being sampled from in this case is a bivariate Gaussian, each of the data points sampled will be a 2-dimensional point (x1, y1).

Each of these points sampled from the original distribution can then be used to make a new distribution.

Example:

means = [ (x1,y1), (x2,y2), ..., (x10,y10) ]

To build new bivariate Gaussians:

N1((x1,x2), I), N2((x2,y2), I), ..., N10((x10,y10), I)

They are just using the initial bivariate Gaussian distribution N((1,0), I) as an easy way to pick 10 random means that are distributed normally.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文