gpt4 book ai didi

statistics - 在 stan 中具有单纯形列的矩阵

转载 作者:行者123 更新时间:2023-12-01 12:05:03 25 4
gpt4 key购买 nike

有没有办法在 Stan 中构造一个带有单纯形列的矩阵?我要构建的模型类似于以下模型,其中我的模型算作狄利克雷多项式:

data {
int g;
int c;
int<lower=0> counts[g, c];
}

parameters {
simplex [g] p;
}

model {
for (j in 1:c) {
p ~ dirichlet(rep_vector(1.0, g));
counts[, j] ~ multinomial(p);
}
}

但是我想使用潜在的 [g, c]类似于以下分层模型的进一步层的矩阵:
parameters {
// simplex_matrix would have columns which are each a simplex.
simplex_matrix[g, c] p;
}
model {
for (j in 1:c) {
p[, j] ~ dirichlet(rep_vector(1.0, g));
counts[, j] ~ multinomial(p[, j]);
}
}

如果有另一种方法来构造这个潜在变量,那当然也很棒!我对 stan 并不十分熟悉,他只实现了几个层次模型。

最佳答案

要回答您提出的问题,您可以在 Stan 程序的参数块中声明一个单纯形数组,并使用它们来填充矩阵。例如,

parameters {
simplex[g] p[c];
}
model {
matrix[g, c] col_stochastic_matrix;
for (i in 1:c) col_stochastic_matrix[,c] = p[c];
}

但是,您实际上并不需要在您给出的示例中形成列随机矩阵,因为您可以通过索引一个单纯形数组来实现多项式狄利克雷模型,例如
data {
int g;
int c;
int<lower=0> counts[g, c];
}
parameters {
simplex [g] p[c];
}
model {
for (j in 1:c) {
p[j] ~ dirichlet(rep_vector(1.0, g));
counts[, j] ~ multinomial(p[j]);
}
}

最后,您实际上根本不需要声明一个单纯形数组,因为它们可以从后验分布中积分出来并在 Stan 程序的生成量块中恢复。见 wikipedia细节,但它的本质是由这个 Stan 函数给出的
functions {
real DM_lpmf(int [] n, vector alpha) {
int N = sum(n);
real A = sum(alpha);
return lgamma(A) - lgamma(N + A)
+ sum(lgamma(to_vector(n) + alpha)
- sum(lgamma(alpha));
}
}

关于statistics - 在 stan 中具有单纯形列的矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58191561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com