ERNIE

  • Post author:
  • Post category:其他



ImportError: cannot import name ‘AutoModel’ from ‘transformers’ (E:\venv\lib\site-packages\transformers_

init

_.py)


原因,安装的enrie版本有问题

安装:

pip install paddle-ernie -i https://mirror.baidu.com/pypi/simple

即可。


UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xaf in position 47: illeg


解决方法:打开文件时添加 encoding=’utf-8’ 进行编码即可


InvalidArgumentError: Tensor holds the wrong type, it holds int, but desires to be int64_t.


原因:int和int64不匹配

解决方法:将

text, label = l[0], int(l[1])

改为

text, label = l[0], np.int64(l[1])



版权声明:本文为baidu_41923143原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。