yaml 配置文件

https://www.cnblogs.com/xinjing-jingxin/p/9128293.html

---文件开始

- 列表

key: val 字典

注意:字典里面可以嵌套字典,列表等。(举例)

https://github.com/msracver/Deformable-ConvNets/blob/master/experiments/faster_rcnn/cfgs/resnet_v1_101_voc0712_rcnn_dcn_end2end.yaml

import yaml

# f = open('test.yaml')
# res = yaml.load(f)
# print(res)
# f.close()

f = open('resnet_v1_101_voc0712_rcnn_dcn_end2end.yaml')
res = yaml.load(f)
print(res)
f.close()

原文地址:https://www.cnblogs.com/TreeDream/p/10150614.html