我怎样才能在我的功能中修复错误?

时间:2015-12-15 22:50:48

标签: python

我职能部门的错误在哪里? 我收到了一个错误 def

2 个答案:

答案 0 :(得分:2)

return compute_confusion_matrix中,您应该在调用它时返回函数:

return compute_confusion_matrix('truth.txt', 'prediction.txt')

答案 1 :(得分:0)

如果您想假设compute_confusion_matrix()默认采用'truth.txt'和'prediction.txt',请将def更改为:

def compute_confusion_matrix(file1='!truth.txt', 
                             file2='!prediction.txt', 
                             pos_tag=True, 
                             neg_tag=False):

然后直接调用它:

return compute_confusion_matrix()