国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

5. 線性層及其他層

這篇具有很好參考價值的文章主要介紹了5. 線性層及其他層。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

5.1 神經(jīng)網(wǎng)絡(luò)結(jié)構(gòu)

5. 線性層及其他層,動手學(xué)卷積神經(jīng)網(wǎng)絡(luò),深度學(xué)習(xí),pytorch,python

?5.2 線性拉平

import torch
import torchvision
from torch import nn 
from torch.nn import ReLU
from torch.nn import Sigmoid
from torch.utils.data import DataLoader
from torch.utils.tensorboard import SummaryWriter

dataset = torchvision.datasets.CIFAR10("./dataset",train=False,transform=torchvision.transforms.ToTensor(),download=True)       
dataloader = DataLoader(dataset, batch_size=64)

for data in dataloader:
    imgs, targets = data
    print(imgs.shape)
    output = torch.reshape(imgs,(1,1,1,-1))
    print(output.shape)

結(jié)果:

5. 線性層及其他層,動手學(xué)卷積神經(jīng)網(wǎng)絡(luò),深度學(xué)習(xí),pytorch,python

?5.3 線性層

import torch
import torchvision
from torch import nn 
from torch.nn import Linear
from torch.utils.data import DataLoader
from torch.utils.tensorboard import SummaryWriter

dataset = torchvision.datasets.CIFAR10("./dataset",train=False,transform=torchvision.transforms.ToTensor(),download=True)       
dataloader = DataLoader(dataset, batch_size=64,drop_last=True)

class Tudui(nn.Module):
    def __init__(self):
        super(Tudui, self).__init__()
        self.linear1 = Linear(196608,10)
        
    def forward(self, input):
        output = self.linear1(input)
        return output

tudui = Tudui()
writer = SummaryWriter("logs")
step = 0

for data in dataloader:
    imgs, targets = data
    print(imgs.shape)
    writer.add_images("input", imgs, step)
    output = torch.reshape(imgs,(1,1,1,-1)) # 方法一:拉平
    #output = torch.flatten(imgs)  # 方法二:拉平。展開為一維
    print(output.shape)
    output = tudui(output)
    print(output.shape)
    writer.add_images("output", output, step)
    step = step + 1

操作:

① 在 Anaconda 終端里面,激活py3.6.3環(huán)境,再輸入 tensorboard --logdir=C:\Users\wangy\Desktop\03CV\logs 命令,將網(wǎng)址賦值瀏覽器的網(wǎng)址欄,回車,即可查看tensorboard顯示日志情況。

5. 線性層及其他層,動手學(xué)卷積神經(jīng)網(wǎng)絡(luò),深度學(xué)習(xí),pytorch,python

?結(jié)果:

5. 線性層及其他層,動手學(xué)卷積神經(jīng)網(wǎng)絡(luò),深度學(xué)習(xí),pytorch,python

?文章來源地址http://www.zghlxwxcb.cn/news/detail-685515.html

到了這里,關(guān)于5. 線性層及其他層的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進(jìn)行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包