ImportError:无法从“数据”(未知位置)导入名称“ voc”。

问题描述 投票:0回答:1

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

或者请告诉我,当数据和ssd来自https://github.com/amdegroot/ssd.pytorch.git时,应将我的项目python文件和https://github.com/amdegroot/ssd.pytorch.git文件放在哪个目录下,以使上述导入语句正常工作>

PS:ssd是单发MultiBox检测器,我正在使用anaconda

我一直在尝试从项目https://github.com/amdegroot/ssd.pytorch.git运行ssd代码,但上面的错误不断弹出。我猜目录有问题。请...

python anaconda torch torchvision
1个回答
0
投票

您将需要下载该项目,并且该项目内应有一个包含名称数据的文件夹,其中应存在一个具有该名称的类。

© www.soinside.com 2019 - 2024. All rights reserved.