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


Python cfg.MATLAB属性代码示例

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


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

示例1: _do_matlab_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [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 MATLAB [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 MATLAB [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 MATLAB [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

示例5: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
    annopath = os.path.join(
      self._devkit_path,
      'VOC' + self._year,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      self._devkit_path,
      'VOC' + self._year,
      'ImageSets',
      'Main',
      self._image_set + '.txt')
    cachedir = os.path.join(self._devkit_path, 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    use_07_metric = True if int(self._year) < 2010 else False
    print('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
    if not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__':
        continue
      filename = self._get_voc_results_file_template().format(cls)
      rec, prec, ap = voc_eval(
        filename, annopath, imagesetfile, cls, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric, use_diff=self.config['use_diff'])
      aps += [ap]
      print(('AP for {} = {:.4f}'.format(cls, ap)))
      with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
        pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------') 
开发者ID:Sunarker,项目名称:Collaborative-Learning-for-Weakly-Supervised-Object-Detection,代码行数:46,代码来源:pascal_voc.py

示例6: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
        annopath = os.path.join(
            self._devkit_path,
            'VOC' + self._year,
            'Annotations',
            '{:s}.xml')
        imagesetfile = os.path.join(
            self._devkit_path,
            'VOC' + self._year,
            'ImageSets',
            'Main',
            self._image_set + '.txt')
        cachedir = os.path.join(self._devkit_path, 'annotations_cache')
        aps = []
        # The PASCAL VOC metric changed in 2010
        use_07_metric = True if int(self._year) < 2010 else False
        print('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
        if not os.path.isdir(output_dir):
            os.mkdir(output_dir)
        for i, cls in enumerate(self._classes):
            if cls == '__background__':
                continue
            filename = self._get_voc_results_file_template().format(cls)
            rec, prec, ap = voc_eval(
                filename, annopath, imagesetfile, cls, cachedir, ovthresh=0.5,
                use_07_metric=use_07_metric, use_diff=self.config['use_diff'])
            aps += [ap]
            print(('AP for {} = {:.4f}'.format(cls, ap)))
            with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
                pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
        print(('Mean AP = {:.4f}'.format(np.mean(aps))))
        print('~~~~~~~~')
        print('Results:')
        for ap in aps:
            print(('{:.3f}'.format(ap)))
        print(('{:.3f}'.format(np.mean(aps))))
        print('~~~~~~~~')
        print('')
        print('--------------------------------------------------------------')
        print('Results computed with the **unofficial** Python eval code.')
        print('Results should be very close to the official MATLAB eval code.')
        print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
        print('-- Thanks, The Management')
        print('--------------------------------------------------------------') 
开发者ID:Sanster,项目名称:tf_ctpn,代码行数:46,代码来源:pascal_voc.py

示例7: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
    annopath = os.path.join(
      self._dist_path,
      'coco_multi' ,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      self._dist_path,
      self._image_set + '.txt')
    cachedir = os.path.join(self._dist_path, 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    #use_07_metric = True if int(self._year) < 2010 else False
    use_07_metric = False
    print('dist metric? ' + ('Yes' if use_07_metric else 'No'))
    if not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__' or cls == self.classes[0]:
        cls_ind=0
        continue
      else:
        cls_ind=self._class_to_ind[cls]
      #elif cls=='median_filtering':
        #cls_ind=3
        #continue
      filename = self._get_voc_results_file_template().format(cls)
      filename2 = self._get_voc_noise_results_file_template().format(cls)
      print(cls_ind)
      rec, prec, ap = voc_eval(
        filename,filename2, annopath, imagesetfile, cls_ind, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric,fuse=False)
      aps += [ap]
      print(('AP for {} = {:.4f},recall = {:.4f}, precision = {:.4f}'.format(cls, ap,rec[-1],prec[-1])))
      with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
        pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
      fig=plt.figure()
      plt.plot(rec,prec)
      fig.suptitle('PR curve for {} detection'.format(cls),fontsize=20)
      plt.xlabel('recall',fontsize=15)
      plt.xlim((0,1.0))
      plt.ylim((0,1.0))
      plt.ylabel('precision',fontsize=15)
      fig.savefig('{}.jpg'.format(cls))

    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------') 
开发者ID:pengzhou1108,项目名称:RGB-N,代码行数:61,代码来源:dvmm.py

示例8: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
    annopath = os.path.join(
      self._dist_path,
      'coco_multi' ,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      self._dist_path,
      self._image_set + '.txt')
    cachedir = os.path.join(self._dist_path, 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    #use_07_metric = True if int(self._year) < 2010 else False
    use_07_metric = False
    print('dist metric? ' + ('Yes' if use_07_metric else 'No'))
    if not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__' or cls == self.classes[0]:
        cls_ind=0
        continue
      else:
        cls_ind=self._class_to_ind[cls]
      #elif cls=='median_filtering':
        #cls_ind=3
        #continue
      filename = self._get_voc_results_file_template().format(cls)
      filename2 = self._get_voc_noise_results_file_template().format(cls)
      print(cls_ind)
      rec, prec, ap = voc_eval(
        filename,filename2, annopath, imagesetfile, cls_ind, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric,fuse=False)
      aps += [ap]
      print(('AP for {} = {:.4f},recall = {:.4f}, precision = {:.4f}'.format(cls, ap,rec[-1],prec[-1])))
      with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
        pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
      fig=plt.figure()
      plt.plot(rec,prec)
      fig.suptitle('PR curve for {} detection'.format(cls),fontsize=20)
      plt.xlabel('recall',fontsize=15)
      plt.xlim((0,1.0))
      plt.ylim((0,1.0))
      plt.ylabel('precision',fontsize=15)
      fig.savefig('{}.png'.format(cls))

    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------') 
开发者ID:pengzhou1108,项目名称:RGB-N,代码行数:61,代码来源:nist.py

示例9: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
    annopath = os.path.join(
      '/home-3/pengzhou@umd.edu/work/pengzhou/dataset',
      'coco_multi' ,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      '/home-3/pengzhou@umd.edu/work/pengzhou/dataset',
      self._image_set + '.txt')
    cachedir = os.path.join('/home-3/pengzhou@umd.edu/work/pengzhou/dataset', 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    #use_07_metric = True if int(self._year) < 2010 else False
    use_07_metric = False
    print('dist metric? ' + ('Yes' if use_07_metric else 'No'))
    if not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__' or cls == self.classes[0]:
        cls_ind=0
        continue
      else:
        cls_ind=self._class_to_ind[cls]
      #elif cls=='median_filtering':
        #cls_ind=3
        #continue
      filename = self._get_voc_results_file_template().format(cls)
      filename2 = self._get_voc_noise_results_file_template().format(cls)
      print(cls_ind)
      rec, prec, ap = voc_eval(
        filename,filename2, annopath, imagesetfile, cls_ind, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric,fuse=False)
      aps += [ap]
      print(('AP for {} = {:.4f},recall = {:.4f}, precision = {:.4f}'.format(cls, ap,rec[-1],prec[-1])))
      with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
        pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
      fig=plt.figure()
      plt.plot(rec,prec)
      fig.suptitle('PR curve for {} detection'.format(cls),fontsize=20)
      plt.xlabel('recall',fontsize=15)
      plt.xlim((0,1.0))
      plt.ylim((0,1.0))
      plt.ylabel('precision',fontsize=15)
      fig.savefig('{}.jpg'.format(cls))

    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------') 
开发者ID:pengzhou1108,项目名称:RGB-N,代码行数:61,代码来源:swapme.py

示例10: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
    annopath = os.path.join(
      self._devkit_path,
      'VOC' + self._year,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      self._devkit_path,
      'VOC' + self._year,
      'ImageSets',
      'Main',
      self._image_set + '.txt')
    cachedir = os.path.join(self._devkit_path, 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    use_07_metric = True if int(self._year) < 2010 else False
    print('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
    if not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__':
        continue
      filename = self._get_voc_results_file_template().format(cls)
      rec, prec, ap = voc_eval(
        filename, annopath, imagesetfile, cls, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric)
      aps += [ap]
      print(('AP for {} = {:.4f}'.format(cls, ap)))
      with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
        pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------') 
开发者ID:pengzhou1108,项目名称:RGB-N,代码行数:46,代码来源:pascal_voc.py

示例11: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir='output'):
    annopath = os.path.join(
      self._dist_path,
      'coco_multi' ,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      self._dist_path,
      self._image_set + '.txt')
    cachedir = os.path.join(self._dist_path, 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    #use_07_metric = True if int(self._year) < 2010 else False
    use_07_metric = False
    print('dist metric? ' + ('Yes' if use_07_metric else 'No'))
    if not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__' or cls == self.classes[0]:
        cls_ind=0
        continue
      else:
        cls_ind=self._class_to_ind[cls]
      #elif cls=='median_filtering':
        #cls_ind=3
        #continue
      filename = self._get_voc_results_file_template().format(cls)
      filename2 = self._get_voc_noise_results_file_template().format(cls)
      #print(cls_ind)
      rec, prec, ap = voc_eval(
        filename,filename2, annopath, imagesetfile, cls_ind, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric,fuse=False)
      aps += [ap]
      print(('AP for {} = {:.4f},recall = {:.4f}, precision = {:.4f}'.format(cls, ap,rec[-1],prec[-1])))
      with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
        pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
      fig=plt.figure()
      plt.plot(rec,prec)
      fig.suptitle('PR curve for {} detection'.format(cls),fontsize=20)
      plt.xlabel('recall',fontsize=15)
      plt.xlim((0,1.0))
      plt.ylim((0,1.0))
      plt.ylabel('precision',fontsize=15)
      fig.savefig('{}.png'.format(cls))

    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------') 
开发者ID:pengzhou1108,项目名称:RGB-N,代码行数:61,代码来源:coco.py

示例12: _do_python_eval

# 需要导入模块: from model.config import cfg [as 别名]
# 或者: from model.config.cfg import MATLAB [as 别名]
def _do_python_eval(self, output_dir=None):
    annopath = os.path.join(
      self._devkit_path,
      'VOC' + self._year,
      'Annotations',
      '{:s}.xml')
    imagesetfile = os.path.join(
      self._devkit_path,
      'VOC' + self._year,
      'ImageSets',
      'Main',
      self._image_set + '.txt')
    cachedir = os.path.join(self._devkit_path, 'annotations_cache')
    aps = []
    # The PASCAL VOC metric changed in 2010
    use_07_metric = True if int(self._year) < 2010 else False
    print('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
    if output_dir is not None and not os.path.isdir(output_dir):
      os.mkdir(output_dir)
    for i, cls in enumerate(self._classes):
      if cls == '__background__':
        continue
      filename = self._get_voc_results_file_template().format(cls)
      rec, prec, ap = voc_eval(
        filename, annopath, imagesetfile, cls, cachedir, ovthresh=0.5,
        use_07_metric=use_07_metric, use_diff=self.config['use_diff'])
      aps += [ap]
      print(('AP for {} = {:.4f}'.format(cls, ap)))
      if output_dir is not None:
        with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
          pickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
    print(('Mean AP = {:.4f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    '''
    print('Results:')
    for ap in aps:
      print(('{:.3f}'.format(ap)))
    print(('{:.3f}'.format(np.mean(aps))))
    print('~~~~~~~~')
    print('')
    print('--------------------------------------------------------------')
    print('Results computed with the **unofficial** Python eval code.')
    print('Results should be very close to the official MATLAB eval code.')
    print('Recompute with `./tools/reval.py --matlab ...` for your paper.')
    print('-- Thanks, The Management')
    print('--------------------------------------------------------------')
    ''' 
开发者ID:CaoWGG,项目名称:CenterNet-CondInst,代码行数:49,代码来源:pascal_voc.py


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