gpt4 book ai didi

Python 2.7 内存泄漏与 scipy.minimize

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

在拟合过程中,我的 RAM 内存缓慢但稳定地增加(大约每两秒 2.8 MB),直到出现内存错误或我终止程序。当我尝试通过拟合模型来拟合大约 80 个测量值时,就会发生这种情况。此拟合是通过使用 scipy.minimze 来最小化 Chi_squared 来完成的。

到目前为止我已经尝试过:

  • Garbage collector收集每次 Chi_squared 调用我的模型,没有帮助。
  • 使用 global() 查看所有变量然后使用 pympler.asizeof为了找到我的变量占用的空间总量,它首先增加但然后保持不变。
    • pympler.tracker.SummaryTracker 也没有显示任何变量大小的增加。
  • 我还查看了 memory_profiler但没有找到任何相关内容。

从这些测试来看,我的 RAM 使用率似乎上升了,而我的变量占用的总空间却保持不变。我真的很想知道我的内存去了哪里。

下面的代码为我重现了这个问题:

import numpy as np
import scipy
import scipy.optimize as op
import scipy.stats
import scipy.integrate



def fit_model(model_pmt, x_list, y_list, PMT_parra, PMT_bounds=None, tolerance=10**-1, PMT_start_gues=None):
result = op.minimize(chi_squared, PMT_start_gues, args=(x_list, y_list, model_pmt, PMT_parra[0], PMT_parra[1], PMT_parra[2]),
bounds=PMT_bounds, method='SLSQP', options={"ftol": tolerance})
print result



def chi_squared(fit_parm, x, y_val, model, *non_fit_parm):
parm = np.concatenate((fit_parm, non_fit_parm))
y_mod = model(x, *parm)
X2 = sum(pow(y_val - y_mod, 2))
return X2



def basic_model(cb_list, max_intesity, sigma_e, noise, N, centre1, centre2, sigma_eb, min_dist=10**-5):
"""
plateau function consisting of two gaussian CDF functions.
"""
def get_distance(x, r):
dist = abs(x - r)
if dist < min_dist:
dist = min_dist
return dist

def amount_of_material(x):
A = scipy.stats.norm.cdf((x - centre1) / sigma_e)
B = (1 - scipy.stats.norm.cdf((x - centre2) / sigma_e))
cube = A * B
return cube

def amount_of_field_INTEGRAL(x, cb):
"""Integral that is part of my sum"""
result = scipy.integrate.quad(lambda r: scipy.stats.norm.pdf((r - cb) / sigma_b) / pow(get_distance(x, r), N),
start, end, epsabs=10 ** -1)[0]
return result



# Set some constants, not important
sigma_b = (sigma_eb**2-sigma_e**2)**0.5
start, end = centre1 - 3 * sigma_e, centre2 + 3 * sigma_e
integration_range = np.linspace(start, end, int(end - start) / 20)
intensity_list = []

# Doing a riemann sum, this is what takes the most time.
for i, cb_point in enumerate(cb_list):
intensity = sum([amount_of_material(x) * amount_of_field_INTEGRAL(x, cb_point) for x in integration_range])
intensity *= (integration_range[1] - integration_range[0])
intensity_list.append(intensity)


model_values = np.array(intensity_list) / max(intensity_list)* max_intesity + noise
return model_values


def get_dummy_data():
"""Can be ignored, produces something resembling my data with noise"""
# X is just a range
x_list = np.linspace(0, 300, 300)

# Y is some sort of step function with noise
A = scipy.stats.norm.cdf((x_list - 100) / 15.8)
B = (1 - scipy.stats.norm.cdf((x_list - 200) / 15.8))
y_list = A * B * .8 + .1 + np.random.normal(0, 0.05, 300)

return x_list, y_list


if __name__=="__main__":
# Set some variables
start_pmt = [0.7, 8, 0.15, 0.6]
pmt_bounds = [(.5, 1.3), (4, 15), (0.05, 0.3), (0.5, 3)]
pmt_par = [110, 160, 15]
x_list, y_list = get_dummy_data()

fit_model(basic_model, x_list, y_list, pmt_par, PMT_start_gues=start_pmt, PMT_bounds=pmt_bounds, tolerance=0.1)

感谢您的帮助!

最佳答案

我通过逐层移除间接层来缩小问题范围。 (@joris267 这是你在提问之前真正应该自己做的事情。)重现问题的最少剩余代码如下所示:

import scipy.integrate

if __name__=="__main__":
while True:
scipy.integrate.quad(lambda r: 0, 1, 100)

结论:

  1. 是的,有内存泄漏。
  2. 不,泄漏不在 scipy.minimize 中,而是在 scipy.quad 中。

然而,这是一个known issue with scipy 0.19.0 .升级到 0.19.1 应该可以解决问题,但我不确定,因为我自己还在使用 0.19.0 :)

更新:

将 scipy 升级到 0.19.1(并将 numpy 升级到 1.13.3 以实现兼容性)后,泄漏在我的系统上消失了。

关于Python 2.7 内存泄漏与 scipy.minimize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46904999/

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