We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
你使用的操作系统: windows10+pycharm
你使用的Python版本: 3.11
你加载的预训练模型:albert
# 在snippets.py文件620行出现错误,错误信息如下: # module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'?
# module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'?
此原因为python3.7之后对于getargspec不再支持,将getargspec改为getfullargspec即可正常运行。 希望遇见这个问题的人可以这样解决。 或者有更好的解决方法请告知,谢谢。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
基本信息
你使用的操作系统: windows10+pycharm
你使用的Python版本: 3.11
你加载的预训练模型:albert
核心代码
输出信息
# module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'?
自我尝试
此原因为python3.7之后对于getargspec不再支持,将getargspec改为getfullargspec即可正常运行。
希望遇见这个问题的人可以这样解决。
或者有更好的解决方法请告知,谢谢。
The text was updated successfully, but these errors were encountered: