gpt4 book ai didi

python - Scipy curve_fit 仅针对非常特定的 x 值静默失败

转载 作者:太空宇宙 更新时间:2023-11-03 13:58:27 25 4
gpt4 key购买 nike

我有一段较大的代码,其核心是将函数与数据相匹配。要拟合的数据和函数是动态的。最近我向整个系统附加了一个额外的数据点,现在 curve_fit 总是返回初始猜测(或太接近它的东西),无论我如何选择它。对于非常不同的 y 值和 x 值(十组前者,两组后者)会发生这种情况。

我知道选择起始值很重要,但我以前从未遇到过使用默认值的问题(我的函数通常很简单)并且可以通过取消注释添加附加数据的新代码来恢复到正常工作的状态观点。现在人们会认为新代码显然是问题所在,但在新添加和实际将数据馈送到 curve_fit 之间有相当多的步骤。我已经检查过 curve_fit 的输入类型是否相同:np.ndarray,在有问题的情况下只有一个元素长。

但是,在创建 MWE 时,我注意到它只是导致问题的确切 x 数组。当我在我的 MWE 中复制主程序的打印 x 向量而不是内部表示时,它完全消失了。因此我只能用外部文件来说明问题:local_z.npy [150kB]

MWE:

import numpy as np
from scipy.optimize import curve_fit

values = np.array([[1.37712972, 1.58475346, 1.78578759, 1.9843099, 1.73393093],
[-0.0155715, -0.01534987, -0.00910744, -0.00189728, -1.73393093],
[1.23613934, 0.76894505, 0.18876817, 0.06376843, 1.1637315 ],
[0.8535248, 0.53093829, 0.13033993, 0.04403058, 0.80352895],
[0.51505805, 0.32039379, 0.0786534, 0.02657018, 0.48488813]])
heights = np.array([ 22.110203, 65.49054, 110.321526, 156.54034, 166.59094])
local_z = np.load('local_z.npy')
print('difference in heights', local_z - heights)

def func(z, a0, a1):
return a0 + a1*z

for v in values:
popt_non_working = curve_fit(func, local_z, v)[0]
print('not working: ', popt_non_working)
popt_working = curve_fit(func, heights, v)[0]
print('working: ', popt_working)

我使用 Python 2.7.6、numpy 1.14.1 和 scipy 1.0.0 的输出:

$ python auxiliary/SUBLIME_fit_test.py  
('difference in heights', array([-2.10693358e-07, -4.49218746e-07, -4.26269537e-07, 4.23828126e-06, 2.38281251e-06]))
/home/csag5117/venv/local/lib/python2.7/site-packages/scipy/optimize/minpack.py:785: OptimizeWarning: Covariance of the parameters could not be estimated category=OptimizeWarning)
('not working: ', array([1., 1.]))
('working: ', array([1.35420488, 0.00325281]))
('not working: ', array([1., 1.]))
('working: ', array([ 0.38896878, -0.00714073]))
('not working: ', array([1., 1.]))
('working: ', array([ 1.06301278, -0.00363439]))
('not working: ', array([1., 1.]))
('working: ', array([ 0.73398503, -0.00250946]))
('not working: ', array([1., 1.]))
('working: ', array([ 0.442922 , -0.00151433]))

如您所见,我使用 heights 作为 x 值的版本按预期工作(返回拟合参数),而我使用存储的 `local_z' 的版本没有,甚至尽管两个阵列之间的差异非常小。我只显示多个 y 值以表明这不是百万分之一的故障,可以通过适当的起始值来修复。这也只是一个示例,我还有一个具有相同行为的更多数据点(24 个而不是 5 个)。

为了完整起见,我添加了代码块(当我关闭它时一切正常)。有趣的是,通过在 MWE 中使用 local_z[:-1] 遗漏 local_z 中的最后一个值(这是代码块添加的值)并没有修复问题。

zi_minus_dd -= 1
zf_long = np.append(out.zf, np.squeeze(data.zf[t])[z_mask_full[-1] + 1])
u_zi = np.interp(zi_minus_dd, zf_long,
np.append(out.u, np.squeeze(data.u[t])[z_mask_full[-1] + 1]))
v_zi = np.interp(zi_minus_dd, zf_long,
np.append(out.v, np.squeeze(data.v[t])[z_mask_full[-1] + 1]))
th_zi = np.interp(zi_minus_dd, zf_long,
np.append(out.th, np.squeeze(data.th[t])[z_mask_full[-1] + 1]))

zh_long = np.append(out.zh, np.squeeze(data.zh[t])[z_mask_full[-1] + 1])
uw_zi = np.interp(zi_minus_dd, zf_long,
np.append(out.uw_raw, np.squeeze(data.uw[t])[z_mask_full[-1] + 1]))
vw_zi = np.interp(zi_minus_dd, zf_long,
np.append(out.vw_raw, np.squeeze(data.vw[t])[z_mask_full[-1] + 1]))
tke_zi = np.interp(zi_minus_dd, zf_long,
np.append(out.tke, np.squeeze(data.TKE[t])[z_mask_full[-1] + 1]))

out.zf = np.append(out.zf, zi_minus_dd)
out.u = np.append(out.u, u_zi)
out.v = np.append(out.v, u_zi)
out.th = np.append(out.th, u_zi)

out.zh = np.append(out.zh, zi_minus_dd)
out.uw_raw = np.append(out.uw_raw, u_zi)
out.vw_raw = np.append(out.vw_raw, u_zi)
out.tke = np.append(out.tke, u_zi)

out.zfout.zh 是后面做成local_z 的向量。整个代码相当大,并且还依赖于 netCDF 文件(上面代码段中的 data)。我已经问过了here ,但那是工作代码。

我很困惑,不知道如何解决这个问题,甚至不知道如何继续调试。 copy vs deepcopy 或类似的问题是否可能存在问题?虽然我想知道如何通过存储数组将其传输到 MWE...

最佳答案

追踪这个很有趣。 :-)

这不是值,而是它们的类型。这是一个精度问题:有效的 heights 是 float64,无效的 local_z 只是 float32。

我们有

In [70]: heights
Out[70]: array([ 22.110203, 65.49054 , 110.321526, 156.54034 , 166.59094 ])

In [71]: heights.dtype
Out[71]: dtype('float64')

In [72]: curve_fit(func, heights, v)[0]
Out[72]: array([1.35420488, 0.00325281])

In [73]: local_z
Out[73]:
array([ 22.110205, 65.49054 , 110.321526, 156.54034 , 166.59094 ],
dtype=float32)

In [74]: curve_fit(func, local_z, v)[0]
C:\Python\lib\site-packages\scipy\optimize\minpack.py:794: OptimizeWarning: Covariance of the parameters could not be estimated
category=OptimizeWarning)
Out[74]: array([1., 1.])

但如果我们愿意,我们可以让 local_z 工作:

In [75]: curve_fit(func, local_z.astype(np.float64), v)[0]
Out[75]: array([1.35420488, 0.00325281])

或高度失败:

In [76]: curve_fit(func, heights.astype(np.float32), v)[0]
C:\Python\lib\site-packages\scipy\optimize\minpack.py:794: OptimizeWarning: Covariance of the parameters could not be estimated
category=OptimizeWarning)
Out[76]: array([1., 1.])

关于python - Scipy curve_fit 仅针对非常特定的 x 值静默失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52390002/

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