我有一本名为的字典eval_params
,如下所示:
In [1]: eval_params
Out[1]:
{1: {'CLF': 'EMNB',
'EM': 'False',
'FEA': 'words',
'NGRAM': '1-1',
'PDS': 'T',
'PSE': '-',
'RN': '1dnf',
'STEM': 'False',
'UDS': 'He'},
2: {'CLF': 'EMNB',
'EM': 'False',
'FEA': 'words',
'NGRAM': '1-1',
'PDS': 'TS',
'PSE': '-',
'RN': '1dnf',
'STEM': 'False',
'UDS': 'He'},
3: {'CLF': 'EMNB',
'EM': 'False',
'FEA': 'words',
'NGRAM': '1-1',
'PDS': 'T',
'PSE': '-',
'RN': '1dnf',
'STEM': 'False',
'UDS': 'Te'}}
我必须通过使用内置函数的某些谓词来过滤这个字典filter
:
In [2]: filter(pred_func, eval_params.iteritems())
Out[2]:
[(3,
{'CLF': 'EMNB',
'EM': 'False',
'FEA': 'words',
'NGRAM': '1-1',
'PDS': 'T',
'PSE': '-',
'RN': '1dnf',
'STEM': 'False',
'UDS': 'Te'})]
我的问题是我不想对内部的谓词进行硬编码,pred_func
而是将它们动态传递给pred_func
. 电流pred_func
看起来像这样:
def pred_func((i, d)):
# I have to hard-code the parameters to filter by. I don't want that
return d['PDS'] == 'T' and d['UDS'] = 'Te'
相反,我想要类似的东西:
def pred_func((i, d), predicates):
vals = []
# predicates would be a dictionary such as {'PDS':'T', 'UDS':'Te'}
for param, val in predicates.iteritems():
vals.append(d[param] == val)
return all(vals)
但是,据我所知,我不能将额外的参数传递给谓词函数,那么我怎样才能以一种优雅的方式完成我想要的呢?任何的想法?