码迷,mamicode.com
首页 > 其他好文 > 详细

softmax

时间:2018-10-29 02:02:27      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:fun   func   bsp   sof   softmax   tor   ORC   soft   cti   

import torch

import torch.nn.functional as F

x1= torch.Tensor( [ [1,2,3,4],[1,3,4,5],[3,4,5,6]])

y11= F.softmax(x, dim = 0) #对每一列进行softmax

y12 = F.softmax(x,dim =1) #对每一行进行softmax

x2 = torch.Tensor([1,2,3,4])

y2 = F.softmax(x2,dim=0)

 

softmax

标签:fun   func   bsp   sof   softmax   tor   ORC   soft   cti   

原文地址:https://www.cnblogs.com/shaxiaoshaxiao/p/9868057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!