gpt4 book ai didi

python - 内存中似乎有什么东西被困住了

转载 作者:行者123 更新时间:2023-12-01 04:05:51 25 4
gpt4 key购买 nike

我有一个程序,它循环遍历列表,然后在列表上执行函数。从函数返回的结果会有所不同,具体取决于我是循环多个观察结果还是仅循环一个观察结果。例如,当我单独输入第 10 个观察值时,我得到一个结果,但是当我输入 9 和 10 并循环它们时,我得到 10 的不同答案。我唯一能想到的是存在一些变量在 9 上执行该函数剩余的存储空间中,该函数会导致 10 产生不同的结果。以下是循环代码:

for i, k in enumerate(Compobs):
print i+1, ' of ', len(Compobs)
print Compobs[i]
Compobs[i] = Filing(k[0],k[1])

Compobs 只是一个像这样的列表:

[['355300', '19990531'],[...],...]

函数 Filing 来 self 导入的另一个 .py 文件。它定义了一个新类 Filing() 并对每个观察执行一系列函数并最终返​​回一些输出。我对 python 相当陌生,所以我在这里有点不知所措。我可以发布 Filing.py 代码,但这超过 1,000 行代码。

这是 Fileing 类和 init

class Filing(object):
cik =''
datadate=''
potentialpaths=[]
potential_files=[]
filingPath =''
filingType=''
reportPeriod=''
filingText=''
current_folder=''
compData=pd.Series()
potentialtablenumbers=[]
tables=[]
statementOfCashFlows=''
parsedstatementOfCashFlows=[]
denomination=''
cashFlowDictionary ={}
CFdataDictionary=OrderedDict()
CFsectionindex=pd.Series()
cfDataSeries=pd.Series()
cfMapping=pd.DataFrame()
compCFSeries=pd.Series()
cftablenumber=''
CompleteCF=pd.DataFrame()


def __init__(self,cik,datadate):
self.cik=cik
self.datadate=datadate
self.pydate=date(int(datadate[0:4]),int(datadate[4:6]),int(datadate[6:8]))
self.findpathstofiling()
self.selectfiling()
self.extractFilingType()
self.extractFilingText()
self.getCompData()
self.findPotentialStatementOfCashFlows()
self.findStatementOfCashFlows()
self.cleanUpCashFlowTable()
self.createCashFlowDictionary()
self.extractCFdataDictionary()
self.createCFdataSeries()
self.identifySections()
self.createMapping()
self.findOthers()

Filing.py 中的所有变量不应该在每次调用时都从内存中清除吗?我有什么遗漏的吗?

最佳答案

Filing 顶层定义的所有列表、字典和其他对象都只有一份副本。即使您将它们显式分配给实例,该副本也会被共享(如果您没有显式分配它们,它们就会被继承)。要点是,如果您在一个实例中修改它们,那么您就会在所有实例中修改它们。

如果您希望每个实例都有自己的副本,请完全摆脱顶级分配,而是在 __init__ 中分配对象的新实例。

换句话说,不要这样做:

class Foo(object):
x = []

def __init__(self):
self.x = x

相反,请执行以下操作:

class Foo(object):
def __init__(self):
self.x = []

然后每个实例都会有自己的、非共享的 x 副本。

关于python - 内存中似乎有什么东西被困住了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35608156/

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