關於 python 庫config 的相關介紹

最近在在看別人代碼的時候發現有人用了config這個庫來保存一些超參數,超參數的設置在深度學習中是很是重要了。通常的config 庫能夠直接經過pip install config 安裝python

廢話很少說,直接上一個官網上的簡單樣例;學習

先建立個配置文件simple.cfg,內容以下:this

# The message to print (this is a comment)
message: 'Hello, world!'

 #符號是註釋做用orm

每行用 : 符號做爲分隔符blog

from config import Config

# You can pass any file-like object; if it has a name attribute,
# that name is used when file format error messages are printed
f = file('simple.cfg')
cfg = Config(f)
print cfg.message

值的話通常是支持字符串,bool行的True和False,以及數字ip

相關文章
相關標籤/搜索