pytorch
xxiaozr
这个作者很懒,什么都没留下…
展开
-
搞科研(功能结构矩阵)
数据: func维度为 [358,358] , 元素范围为0-1. struc维度为 [358,358] , 元素范围为0-x. (x为正整数)在matlab中,imshow函数显示0-1之间的灰度图,对于元素大于1的值,都显示为最亮的。数据处理 1.对struc的数据进行反正切归一化,即 y = atan(x)*2/pi ,将struc内的元素范围变为 [0.1 ) 之间。 2、使用pyt原创 2017-12-04 22:01:21 · 620 阅读 · 0 评论 -
pytorch 一些 Loss Function
nn.L1Loss()loss(x,y) = 1/n ∑ |xi - yi| n是元素的总个数 shape: input: (N,) 是任何额外的维度 target: (N,*) same as input output: scalar ,标量nnMSELoss()loss(x,y) =1/n ∑(xi-yi)² shape: input: (N,*) targ原创 2017-11-06 16:52:35 · 5233 阅读 · 0 评论