我想获得以下函数的Hessian:
def llik_scalars(param_vector, *args):
Fsc = param_vector[0]
Qsc = param_vector[1]
Rsc = param_vector[2]
y = args[0]
burnin = args[1]
F = np.matrix(Fsc)
Q = np.matrix(Qsc)
R = np.matrix(Rsc)
predstate, predp, _, _ = kalmanfilter(F=F, Q=Q, R=R, y=y, plot = False)
T = len(predp)
predstate = np.array([predstate[t].item() for t in range(len(predstate))])
predp = np.array([predp[t].item() for t in range(len(predp))])
Sigmat = predp + Rsc
Mut = predstate
LL = 0
for t in range(burnin, T):
exponent = -0.5 * (y[t]-Mut[t])**2 / Sigmat[t]
cc = 1 / math.sqrt(2*math.pi*Sigmat[t])
LL -= math.log(cc*math.exp(exponent))
return LL
我正在尝试使用 numdifftools 包的 Hessian 函数来做到这一点。在文档中,我找到了以下信息。例如,如果您想要定义为 Rosen 的 Rosenbrock 函数的 hessian,则 hessian 的计算方式如下:
> H = nd.Hessian(rosen)([1, 1])
在点 [1,1] 计算 Hessian 的地方
按照文档,应该可以为 Hessian 函数提供参数:
class Hessian(f, step=None, method=’central’, order=2, full_output=False, **step_options)
Parameters
fun [function] function of one array fun(x, *args, **kwds)
我通过以下方式进行了尝试:
hess = nd.Hessian(kf.llik_scalars(themin.x, (y,burnin)))(themin.x)
themin.x 是我要评估 Hessian 的点。
themin.x
Out[49]: array([0.67605231, 0.7457089 , 0.72205726])
运行上述代码时出现的错误:
burnin = args[1]
IndexError: tuple index out of range
我不明白元组如何超出范围