yaml 配置文件
Posted treedream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()
以上是关于yaml 配置文件的主要内容,如果未能解决你的问题,请参考以下文章
3.springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Im(代码片
3springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Imp(代码片