0

我一直在尝试从项目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

4

1 回答 1

0

您将需要下载该项目,它应该有一个名为 data 的文件夹,其中应该存在一个具有此名称的类。

your_file.py 数据结构示例 |_ xxx.py

xxx.py 的代码示例

BaseTransform 类:xxxxxx

于 2020-01-24T20:50:02.403 回答