You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in "手写数字识别器_minst_convnet.ipynb"
in def forward()
x = F.log_softmax(x, dim = 0) #输出层为log_softmax,即概率对数值log(p(x))。采用log_softmax可以使得后面的交叉熵计算更快
here the dim should be 1 because we see dim=0 as per data line
The text was updated successfully, but these errors were encountered:
in "手写数字识别器_minst_convnet.ipynb"
in def forward()
x = F.log_softmax(x, dim = 0) #输出层为log_softmax,即概率对数值log(p(x))。采用log_softmax可以使得后面的交叉熵计算更快
here the dim should be 1 because we see dim=0 as per data line
The text was updated successfully, but these errors were encountered: