加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
parse_cfg.py 698 Bytes
一键复制 编辑 原始数据 按行查看 历史
calmisential 提交于 2020-01-04 16:43 . Update
from configuration import PASCAL_VOC_DIR, PASCAL_VOC_CLASSES, \
custom_dataset_classes, custom_dataset_dir, use_dataset, COCO_CLASSES, COCO_DIR
class ParseCfg():
def get_images_dir(self):
if use_dataset == "custom":
return custom_dataset_dir
elif use_dataset == "pascal_voc":
return PASCAL_VOC_DIR + "JPEGImages"
elif use_dataset == "coco":
return COCO_DIR + "train2017"
def get_classes(self):
if use_dataset == "custom":
return custom_dataset_classes
elif use_dataset == "pascal_voc":
return PASCAL_VOC_CLASSES
elif use_dataset == "coco":
return COCO_CLASSES
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化