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
应该是要去掉 data 前的点,不然找不到 data 模块
The text was updated successfully, but these errors were encountered:
又试了一下,发现如果直接删去点,会导致 main.py 运行出错。所以我觉得这样可以兼顾。 将
from .data import DataSeq
改为
if __name__ == "__main__": from data import DataSeq else: from .data import DataSeq
Sorry, something went wrong.
No branches or pull requests
应该是要去掉 data 前的点,不然找不到 data 模块
The text was updated successfully, but these errors were encountered: