在 GLUE 任务上使用 Hugginface Transformers 时,出现错误AttributeError: 'MrpcProcessor' object has no attribute 'tfds_map'
我怀疑兼容性问题。
在 GLUE 任务上使用 Hugginface Transformers 时,出现错误AttributeError: 'MrpcProcessor' object has no attribute 'tfds_map'
我怀疑兼容性问题。
我的解决方案是简单地将转换器的版本降级到 2.2.0
pip uninstall transformers -y
pip install transformers==2.2.0
现在我正在使用transformers 2.11.0
,这段代码对我有用:
# First we create an empty Byte-Pair Encoding model (i.e. not trained model)
tokenizer = Tokenizer(BPE())
tokenizer.normalizer = Sequence([
NFKC(),
Lowercase()
])
所以似乎有一个可以使用的构造函数。