你确定你的代码没有错吗
Opened this issue · 1 comments
zoupei123456 commented
Traceback (most recent call last):
File "./traffic-sign-code/train.py", line 20, in
from net.lenet import LeNet
ModuleNotFoundError: No module named 'net'
hadolop commented
from net.lenet import LeNet 他是从net文件夹中导入自己写的包LeNet.py
也可以将要导入的包放在同一文件夹中,直接用 import LeNet 就可以导入了