PaddleDetection环境安装中的问题
收藏
快速回复
AI Studio平台使用 问答其他 1410 5
PaddleDetection环境安装中的问题
收藏
快速回复
AI Studio平台使用 问答其他 1410 5

PaddleDetection文档https://paddledetection.readthedocs.io/tutorials/INSTALL_cn.html

其中运行测试是否通过的文件时

遇到了下面的问题:

下面是python的代码,一步步跟着文档做的,是我的环境还有问题吗。。实在查不到类似的情况解决办法,有用过的同志知道如何解决吗,非常感谢!!!

#   Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import unittest
import numpy as np

import paddle.fluid as fluid

from ppdet.modeling.tests.decorator_helper import prog_scope
from ppdet.core.workspace import load_config, merge_config, create
from ppdet.modeling.model_input import create_feed


class TestFasterRCNN(unittest.TestCase):
    def setUp(self):
        self.set_config()
        self.cfg = load_config(self.cfg_file)
        self.detector_type = self.cfg['architecture']

    def set_config(self):
        self.cfg_file = 'configs/faster_rcnn_r50_1x.yml'

    @prog_scope()
    def test_train(self):
        train_feed = create(self.cfg['train_feed'])
        model = create(self.detector_type)
        _, feed_vars = create_feed(train_feed)
        train_fetches = model.train(feed_vars)

    @prog_scope()
    def test_test(self):
        test_feed = create(self.cfg['eval_feed'])
        model = create(self.detector_type)
        _, feed_vars = create_feed(test_feed)
        test_fetches = model.eval(feed_vars)


class TestMaskRCNN(TestFasterRCNN):
    def set_config(self):
        self.cfg_file = 'configs/mask_rcnn_r50_1x.yml'


class TestCascadeRCNN(TestFasterRCNN):
    def set_config(self):
        self.cfg_file = 'configs/cascade_rcnn_r50_fpn_1x.yml'


class TestYolov3(TestFasterRCNN):
    def set_config(self):
        self.cfg_file = 'configs/yolov3_darknet.yml'


class TestRetinaNet(TestFasterRCNN):
    def set_config(self):
        self.cfg_file = 'configs/retinanet_r50_fpn_1x.yml'


class TestSSD(TestFasterRCNN):
    def set_config(self):
        self.cfg_file = 'configs/ssd/ssd_mobilenet_v1_voc.yml'


if __name__ == '__main__':
    unittest.main()
0
收藏
回复
全部评论(5)
时间顺序
水水水的老师
#2 回复于2020-04

在paddle paddle提个issue

0
回复
水水水的老师
#3 回复于2020-04

大家也可以一起帮忙看看

0
回复
水水水的老师
#4 回复于2020-04

备注一下你的环境  paddle版本  还有你觉得可能的原因

0
回复
thinc
#5 回复于2020-04

你的字符不能分割,检查一下是不是中文":"和英文 ":" 的区别

0
回复
micahvista
#6 回复于2020-04

感觉像是有包有问题,版本间不匹配?

0
回复
在@后输入用户全名并按空格结束,可艾特全站任一用户