真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

argparse標(biāo)準(zhǔn)庫在pytorch-grad-cam實(shí)戰(zhàn)中的使用分析是怎樣的

這篇文章給大家介紹argparse標(biāo)準(zhǔn)庫在pytorch-grad-cam實(shí)戰(zhàn)中的使用分析是怎樣的,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

在長順等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都做網(wǎng)站、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需策劃設(shè)計(jì),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,全網(wǎng)整合營銷推廣,外貿(mào)網(wǎng)站建設(shè),長順網(wǎng)站建設(shè)費(fèi)用合理。

代碼展示:

import torchimport argparsedef get_args():parser = argparse.ArgumentParser()parser.add_argument('--use-cuda', action='store_true', default=False,help='Use NVIDIA GPU acceleration')parser.add_argument('--image-path', type=str, default='./examples/both.png',help='Input image path')args = parser.parse_args()args.use_cuda = args.use_cuda and torch.cuda.is_available()if args.use_cuda:print("Using GPU for acceleration")else:print("Using CPU for computation")return args

args = get_args()print("打印讀取的信息".center(50,'-'))print('args.use_cuda:', args.use_cuda)print('args.image_path:', args.image_path)# python testArgs.py -h# python testArgs.py# python testArgs.py --use-cuda# python testArgs.py --use-cuda --image-path 1.jpg # python testArgs.py --image-path 1.jpg --use-cuda

控制臺下執(zhí)行結(jié)果展示:

Windows PowerShell
版權(quán)所有 (C) Microsoft Corporation。保留所有權(quán)利。

嘗試新的跨平臺 PowerShell https://aka.ms/pscore6
加載個(gè)人及系統(tǒng)配置文件用了 943 毫秒。(base) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> conda activate ssd(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> python testArgs.py -h
usage: testArgs.py [-h] [--use-cuda] [--image-path IMAGE_PATH]optional arguments:  -h, --help            show this help message and exit
  --use-cuda            Use NVIDIA GPU acceleration  --image-path IMAGE_PATH(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> python testArgs.pyUsing CPU for computation---------------------打印讀取的信息----------------------args.use_cuda: False(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> python testArgs.py --use-cudaUsing GPU for acceleration---------------------打印讀取的信息----------------------args.use_cuda: True
args.image_path: ./examples/both.png(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> python testArgs.py --image-path 1.jpgUsing CPU for computation---------------------打印讀取的信息----------------------args.use_cuda: False
args.image_path: 1.jpg(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> python testArgs.py --use-cuda --image-path 1.jpgUsing GPU for acceleration---------------------打印讀取的信息----------------------args.use_cuda: True
args.image_path: 1.jpg(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq> python testArgs.py --image-path 1.jpg --use-cudaUsing GPU for acceleration---------------------打印讀取的信息----------------------args.use_cuda: True
args.image_path: 1.jpg(ssd) PS C:\Users\chenxuqi\Desktop\News4cxq\test4cxq>

關(guān)于argparse標(biāo)準(zhǔn)庫在pytorch-grad-cam實(shí)戰(zhàn)中的使用分析是怎樣的就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


網(wǎng)站名稱:argparse標(biāo)準(zhǔn)庫在pytorch-grad-cam實(shí)戰(zhàn)中的使用分析是怎樣的
當(dāng)前網(wǎng)址:http://weahome.cn/article/iehjss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部