1

模型

我有以下统计模型:

r_i ~ N(r | mu_i, sigma)

mu_i = w . Q_i

w ~ N(w | phi, Sigma)

prior(phi, Sigma) = NormalInvWishart(0, 1, k+1, I_k)

哪里sigma知道。

Q_ir_i(奖励)被观察到。

在这种情况下,r_imu_i是标量,w是 40x1,Q_i是 1x40,phi是 40x1,Sigma是 40x40。

LaTeX 格式版本: http: //mathurl.com/m2utrz4

Python代码

我正在尝试创建一个 PyMC 模型,该模型生成一些样本,然后近似phiSigma.

import pymc as pm
import numpy as np

SAMPLE_SIZE = 100
q_samples = ... # Q created elsewhere
reward_sigma = np.identity(SAMPLE_SIZE) * 0.1
phi_true = (np.random.rand(40)+1) * -2
sigma_true = np.random.rand(40, 40) * 2. - 1.
weights_true = np.random.multivariate_normal(phi_true, sigma_true)
reward_true = np.random.multivariate_normal(np.dot(q_samples,weights_true), reward_sigma)

with pm.Model() as model:
    phi = pm.MvNormal('phi', np.zeros((ndims)), np.identity((ndims)) * 2)
    sigma = pm.InverseWishart('sigma', ndims+1, np.identity(ndims))
    weights = pm.MvNormal('weights', phi, sigma)
    rewards = pm.Normal('rewards', np.dot(weights, q_samples), reward_sigma, observed=reward_true)

with model:
    start = pm.find_MAP()
    step = pm.NUTS()
    trace = pm.sample(3000, step, start)

pm.traceplot(trace)

但是,当我运行该应用程序时,我收到以下错误:

Traceback (most recent call last):
  File "test_pymc.py", line 46, in <module>
    phi = pm.MvNormal('phi', np.zeros((ndims)), np.identity((ndims)) * 2)
TypeError: Wrong number of dimensions: expected 0, got 1 with shape (40,).

我是否以某种方式错误地设置了我的模型?

4

1 回答 1

3

我认为您缺少 MvNormal 的形状参数。我认为 MvNormal(..., shape = ndim) 应该解决这个问题。我们可能应该想办法更好地推断这一点。

于 2013-11-12T08:18:36.877 回答