当前位置: 首页>>代码示例>>Python>>正文


Python cfg.ROOT_DIR属性代码示例

本文整理汇总了Python中model.config.cfg.ROOT_DIR属性的典型用法代码示例。如果您正苦于以下问题:Python cfg.ROOT_DIR属性的具体用法?Python cfg.ROOT_DIR怎么用?Python cfg.ROOT_DIR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在model.config.cfg的用法示例。


在下文中一共展示了cfg.ROOT_DIR属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _do_matlab_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import ROOT_DIR [as 别名]
def _do_matlab_eval(self, output_dir='output'):
    print('-----------------------------------------------------')
    print('Computing results with the official MATLAB eval code.')
    print('-----------------------------------------------------')
    path = os.path.join(cfg.ROOT_DIR, 'lib', 'datasets',
                        'VOCdevkit-matlab-wrapper')
    cmd = 'cd {} && '.format(path)
    cmd += '{:s} -nodisplay -nodesktop '.format(cfg.MATLAB)
    cmd += '-r "dbstop if error; '
    cmd += 'voc_eval(\'{:s}\',\'{:s}\',\'{:s}\',\'{:s}\'); quit;"' \
      .format(self._devkit_path, self._get_comp_id(),
              self._image_set, output_dir)
    print(('Running:\n{}'.format(cmd)))
    status = subprocess.call(cmd, shell=True) 
开发者ID:Sunarker,项目名称:Collaborative-Learning-for-Weakly-Supervised-Object-Detection,代码行数:16,代码来源:pascal_voc.py

示例2: _do_matlab_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import ROOT_DIR [as 别名]
def _do_matlab_eval(self, output_dir='output'):
        print('-----------------------------------------------------')
        print('Computing results with the official MATLAB eval code.')
        print('-----------------------------------------------------')
        path = os.path.join(cfg.ROOT_DIR, 'lib', 'datasets',
                            'VOCdevkit-matlab-wrapper')
        cmd = 'cd {} && '.format(path)
        cmd += '{:s} -nodisplay -nodesktop '.format(cfg.MATLAB)
        cmd += '-r "dbstop if error; '
        cmd += 'voc_eval(\'{:s}\',\'{:s}\',\'{:s}\',\'{:s}\'); quit;"' \
            .format(self._devkit_path, self._get_comp_id(),
                    self._image_set, output_dir)
        print(('Running:\n{}'.format(cmd)))
        status = subprocess.call(cmd, shell=True) 
开发者ID:Sanster,项目名称:tf_ctpn,代码行数:16,代码来源:pascal_voc.py

示例3: _do_matlab_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import ROOT_DIR [as 别名]
def _do_matlab_eval(self, output_dir='output'):
    print('-----------------------------------------------------')
    print('Computing results with the official MATLAB eval code.')
    print('-----------------------------------------------------')
    path = os.path.join(cfg.ROOT_DIR, 'lib', 'datasets',
                        'VOCdevkit-matlab-wrapper')
    cmd = 'cd {} && '.format(path)
    cmd += '{:s} -nodisplay -nodesktop '.format(cfg.MATLAB)
    cmd += '-r "dbstop if error; '
    cmd += 'voc_eval(\'{:s}\',\'{:s}\',\'{:s}\'); quit;"' \
      .format(self._dist_path,
              self._image_set, output_dir)
    print(('Running:\n{}'.format(cmd)))
    status = subprocess.call(cmd, shell=True) 
开发者ID:pengzhou1108,项目名称:RGB-N,代码行数:16,代码来源:coco.py

示例4: _do_matlab_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import ROOT_DIR [as 别名]
def _do_matlab_eval(self, output_dir='output', suffix=''):
    print('-----------------------------------------------------')
    print('Computing results with the official MATLAB eval code.')
    print('-----------------------------------------------------')
    path = os.path.join(cfg.ROOT_DIR, 'lib', 'datasets',
                        'KAISTdevkit-matlab-wrapper')
    cmd = 'cd {} && '.format(path)
    cmd += '{:s} -nodisplay -nodesktop '.format(cfg.MATLAB)
    cmd += '-r "dbstop if error; '
    cmd += 'kaist_eval_full(\'{:s}\',\'{:s}\'); quit;"' \
      .format(os.path.join(output_dir, 'det'+suffix), self._data_path)
    print(('Running:\n{}'.format(cmd)))
    status = subprocess.call(cmd, shell=True) 
开发者ID:Li-Chengyang,项目名称:MSDS-RCNN,代码行数:15,代码来源:kaist.py


注:本文中的model.config.cfg.ROOT_DIR属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。