我一直在尝试使用Python代码进行释义检测。我在super()
函数的特定区域出现错误。任何人都可以帮我吗?
代码是:
class MsrpCorpusPreprocessor(Preprocessor):
def __init__(self, embed_file):
super(MsrpCorpusPreprocessor, self).__init__(
embed_file=embed_file,
max_document_length=48,
unknown="*UNKNOWN*",
pad="*PAD*",
我得到的错误是:
super()参数1必须是type,而不是classobj
有人可以帮忙吗?