1. <strong id="7actg"></strong>
    2. <table id="7actg"></table>

    3. <address id="7actg"></address>
      <address id="7actg"></address>
      1. <object id="7actg"><tt id="7actg"></tt></object>

        Pytorch 網(wǎng)絡(luò)結(jié)構(gòu)可視化

        共 2890字,需瀏覽 6分鐘

         ·

        2021-06-02 15:21

        點(diǎn)擊上方機(jī)器學(xué)習(xí)與生成對抗網(wǎng)絡(luò)”,關(guān)注星標(biāo)

        獲取有趣、好玩的前沿干貨!

        文自:深度學(xué)習(xí)這件小事

        安裝


        可以通過以下的命令進(jìn)行安裝

        conda install pytorch-nightly -c pytorch
        conda install graphviz
        conda install torchvision
        conda install tensorwatch

        本教程基于以下的版本:

        torchvision.__version__   '0.2.1'
        torch.__version__ '1.2.0.dev20190610'
        sys.version '3.6.8 |Anaconda custom (64-bit)| (default, Dec 30 2018, 01:22:34)
        [GCC 7.3.0]'
        載入庫


        import sys
        import torch
        import tensorwatch as tw
        import torchvision.models
        網(wǎng)絡(luò)結(jié)構(gòu)可視化


        alexnet_model = torchvision.models.alexnet()
        tw.draw_model(alexnet_model, [1, 3, 224, 224])

        載入alexnet,draw_model函數(shù)需要傳入三個(gè)參數(shù),第一個(gè)為model,第二個(gè)參數(shù)為input_shape,第三個(gè)參數(shù)為orientation,可以選擇'LR'或者'TB',分別代表左右布局與上下布局。

        在notebook中,執(zhí)行完上面的代碼會顯示如下的圖,將網(wǎng)絡(luò)的結(jié)構(gòu)及各個(gè)層的name和shape進(jìn)行了可視化。


        統(tǒng)計(jì)網(wǎng)絡(luò)參數(shù)


        可以通過model_stats方法統(tǒng)計(jì)各層的參數(shù)情況。

        tw.model_stats(alexnet_model, [1, 3, 224, 224])

        [MAdd]: Dropout is not supported!
        [Flops]: Dropout is not supported!
        [Memory]: Dropout is not supported!
        [MAdd]: Dropout is not supported!
        [Flops]: Dropout is not supported!
        [Memory]: Dropout is not supported!
        [MAdd]: Dropout is not supported!
        [Flops]: Dropout is not supported!
        [Memory]: Dropout is not supported!
        [MAdd]: Dropout is not supported!
        [Flops]: Dropout is not supported!
        [Memory]: Dropout is not supported!
        [MAdd]: Dropout is not supported!
        [Flops]: Dropout is not supported!
        [Memory]: Dropout is not supported!
        [MAdd]: Dropout is not supported!
        [Flops]: Dropout is not supported!
        [Memory]: Dropout is not supported!



        alexnet_model.features

        Sequential(
        (0): Conv2d(3, 64, kernel_size=(11, 11), stride=(4, 4), padding=(2, 2))
        (1): ReLU(inplace=True)
        (2): MaxPool2d(kernel_size=3, stride=2, padding=0, dilation=1, ceil_mode=False)
        (3): Conv2d(64, 192, kernel_size=(5, 5), stride=(1, 1), padding=(2, 2))
        (4): ReLU(inplace=True)
        (5): MaxPool2d(kernel_size=3, stride=2, padding=0, dilation=1, ceil_mode=False)
        (6): Conv2d(192, 384, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))
        (7): ReLU(inplace=True)
        (8): Conv2d(384, 256, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))
        (9): ReLU(inplace=True)
        (10): Conv2d(256, 256, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))
        (11): ReLU(inplace=True)
        (12): MaxPool2d(kernel_size=3, stride=2, padding=0, dilation=1, ceil_mode=False)
        )

        alexnet_model.classifier

        Sequential(
        (0): Dropout(p=0.5)
        (1): Linear(in_features=9216, out_features=4096, bias=True)
        (2): ReLU(inplace=True)
        (3): Dropout(p=0.5)
        (4): Linear(in_features=4096, out_features=4096, bias=True)
        (5): ReLU(inplace=True)
        (6): Linear(in_features=4096, out_features=1000, bias=True)
        )

        考:

        https://github.com/microsoft/tensorwatch


        猜您喜歡:

        等你著陸!【GAN生成對抗網(wǎng)絡(luò)】知識星球!

        超100篇!CVPR 2020最全GAN論文梳理匯總!

        附下載 | 《Python進(jìn)階》中文版

        附下載 | 經(jīng)典《Think Python》中文版

        附下載 | 《Pytorch模型訓(xùn)練實(shí)用教程》

        附下載 | 最新2020李沐《動(dòng)手學(xué)深度學(xué)習(xí)》

        附下載 | 《可解釋的機(jī)器學(xué)習(xí)》中文版

        附下載 |《TensorFlow 2.0 深度學(xué)習(xí)算法實(shí)戰(zhàn)》

        附下載 | 超100篇!CVPR 2020最全GAN論文梳理匯總!

        附下載 |《計(jì)算機(jī)視覺中的數(shù)學(xué)方法》分享


        瀏覽 57
        點(diǎn)贊
        評論
        收藏
        分享

        手機(jī)掃一掃分享

        分享
        舉報(bào)
        評論
        圖片
        表情
        推薦
        點(diǎn)贊
        評論
        收藏
        分享

        手機(jī)掃一掃分享

        分享
        舉報(bào)
        1. <strong id="7actg"></strong>
        2. <table id="7actg"></table>

        3. <address id="7actg"></address>
          <address id="7actg"></address>
          1. <object id="7actg"><tt id="7actg"></tt></object>
            女性的裸体网站 | 在教室伦流澡到高潮h女女视 | 免费视频日 | 日韩精品一二三四 | 国产美女操逼视频 | 欧美激情影院 | 国产久操视频 | 成人免费黄色视频 | 男女羞羞视频 | 一级片无遮挡 |