概述
在卷积神经网络中, x经过激活后,没有经过sigmoid或者softmax处理的"东西",如以下forward函数返回值就是logits
w1, b1 = torch.randn(200, 784, requires_grad=True),
torch.zero(200, requires_grad=True) #ch_out,ch_in 784=28x28
w2, b2 = torch.randn(200, 200, requires_grad=True),
torch.zero(200, requires_grad=True)
w3, b3 = torch.randn(10, 200, requires_grad=True),
torch.zero(200, requires_grad=True)
def forward(x):
x = x@w1.t() +b1#b1是[200]
x = F.relu(x)
x = x@w2.t() + b2
x = F.relu(x)
x = x @ w3.t() + b3
x = F.relu(x)
return x
最后
以上就是鲜艳钢笔为你收集整理的logits 在深度学习中的意思的全部内容,希望文章能够帮你解决logits 在深度学习中的意思所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复