python中的argparse包——用於解析命令列參數

來源:互聯網
上載者:User

標籤:解析命令列   ram   parameter   oat   令行   div   style   amp   out   

python內建的argparse包,常用於解析命令列的參數使用方法example: 
import argparse   parser = argparse.ArgumentParser()  #將argparse包中的ArgumentParser類執行個體化#向parser中添加argument,其具體參數設定見官網手冊parser.add_argument(‘--seed‘, type=int, default=42, help=‘Random seed.‘)  parser.add_argument(‘--epochs‘, type=int, default=200, help=‘Number of epochs to train.‘)parser.add_argument(‘--lr‘, type=float, default=0.01, help=‘Initial learning rate.‘)parser.add_argument(‘--weight_decay‘, type=float, default=5e-4, help=‘Weight decay (L2 loss on parameters).‘)parser.add_argument(‘--hidden‘, type=int, default=16, help=‘Number of hidden units.‘)parser.add_argument(‘--dropout‘, type=float, default=0.5, help=‘Dropout rate (1 - keep probability).‘) args = parser.parse_args()  #通過命令列利用parser進行文法分析

 

參考:

https://docs.python.org/3/library/argparse.html#the-parse-args-method

 

 

 

python中的argparse包——用於解析命令列參數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.