Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FileNotFoundError: [Errno 2] No such file or directory: 'model\\training_args.bin' #27

Open
slytherin101 opened this issue Dec 6, 2022 · 4 comments

Comments

@slytherin101
Copy link

请问怎么解决,谢谢

@KaiserLord
Copy link

同问,请问你搞定这个问题了吗

@zmz125
Copy link

zmz125 commented Feb 2, 2023

同样的问题,请问解决了吗?

@zmz125
Copy link

zmz125 commented Feb 2, 2023

解决了,原因是训练的时候没读到训练集数据,所有没有训练好的模型文件,直接进去验证阶段,要使用训练好的模型,所以报错。

解决方法:我的数据集是用空格分隔,源码中用的'\t',所以读不到数据,在utils.py文件中的第42行修改,\t改为空格。

tokens = line.strip().split(" ")

还有一个错在这里一起说了,utils.py文件中的第153行取label_ids的时候要取标签的[0]位置,也就是只取B I O。

label_ids.append(label_map[labels[i][0]])

@freedomlife1
Copy link

解决了,原因是训练的时候没读到训练集数据,所有没有训练好的模型文件,直接进去验证阶段,要使用训练好的模型,所以报错。

解决方法:我的数据集是用空格分隔,源码中用的'\t',所以读不到数据,在utils.py文件中的第42行修改,\t改为空格。

tokens = line.strip().split(" ")

还有一个错在这里一起说了,utils.py文件中的第153行取label_ids的时候要取标签的[0]位置,也就是只取B I O。

label_ids.append(label_map[labels[i][0]])

牛的,解决了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants