文章目录

  • ​​环境准备​​
  • ​​yml文件​​
  • ​​读取代码​​

环境准备

pip install yaml

yml文件

python——读取yml文件_取代码

读取代码

我需要读取出label_list项:

import yaml

infer_cfg = open('yolov3_r50vd_dcn_270e_coco/infer_cfg.yml')
data = infer_cfg.read()
yaml_reader = yaml.load(data)

print(yaml_reader['label_list'])

python——读取yml文件_取代码_02