【问题标题】:Python 2.7 memory leak with scipy.minimzePython 2.7 内存泄漏与 scipy.minimize
【发布时间】:2018-04-04 22:11:43
【问题描述】:

在 fit 过程中,我的 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)

感谢您的帮助!

【问题讨论】:

    标签: python numpy memory-leaks scipy out-of-memory


    【解决方案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)后,泄漏在我的系统上消失了。

    【讨论】:

    • 谢谢!我会更新 scipy 看看是否可行。很抱歉没有找到正确的最小代码。
    • 是的,更新解决了问题!非常感谢您的帮助。
    猜你喜欢
    • 2016-06-11
    • 2011-06-16
    • 2012-12-02
    • 2011-12-13
    • 2014-02-26
    • 2010-11-27
    • 2018-12-17
    • 2015-01-30
    • 2020-05-24
    相关资源
    最近更新 更多