在运行bert的项目文件时遇到这个报错问题:
builtins.ModuleNotFoundError: No module named 'pytorch_pretrained_bert'
解决方案如下:
这是没有安装这个模块pytorch_pretrained_bert
按照顺序点击,打开命令窗口
输入pip install pytorch_pretrained_bert
点击确定enter,等待下载完成即可。
如果出现意外错误导致未全部下载,可以先输入pip uninstall pytorch_pretrained_bert卸载
再pip安装即可。