pytorch错误记录

问题1:

Assertion srcIndex < srcSelectDimSize failed.
RuntimeError: CUDA error: device-side assert triggered

解决过程:

第一步:参考链接:https://www.pythonheidong.com/blog/article/586782/6183ad3e3b8b8e788993/
第二步:出现错误:RuntimeError: index out of range: Tried to access index 30522 out of table with 30521 rows.
bert等模型分词加入自定义字符造成的vocab.txt文件大小变化,导致模型前向传播计算size不匹配。
参考链接:https://blog.csdn.net/Mr_WangYC/article/details/106718148

结束

你可能感兴趣的:(NLP代码错误记录,pytorch,nlp)