我一直在尝试从项目https://github.com/amdegroot/ssd.pytorch.git运行 ssd 代码, 但上述错误不断弹出。我猜目录有问题。请指导!!
我正在尝试导入以下文件但无法导入
cannot import name 'BaseTransform' from 'data' (unknown location)
这出现了当我尝试从上面的链接运行 ssd python 文件时,我得到了
ImportError: cannot import name 'voc' from 'data' (unknown location)
所以基本上我猜有一些路径问题。
import torch
from torch.autograd import Variable
import cv2
from data import BaseTransform, VOC_CLASSES as labelmap
from ssd import bulid_ssd
import imageio
或者请告诉我应该将我的项目 python 文件和https://github.com/amdegroot/ssd.pytorch.git文件放在哪个目录中,以使上述导入语句在数据和 ssd 来自https://github 时起作用。 com/amdegroot/ssd.pytorch.git
PS:ssd 是 Single Shot MultiBox Detector,我正在使用 anaconda