pytorch
sinat_24674017
这个作者很懒,什么都没留下…
展开
-
pytorch中expand和repeat的区别
expand import torch a = torch.Tensor([[1,2,3]]) ''' tensor( [[1.,2.,3.]] ) ''' aa = a.expand(4, 3) # 也可写为a.expand(4, -1) # 对于某一个维度上的值为1的维度,可以在该维度上进行tensor的复制,若大于1则不行 ''' tensor( [[1.,2.,3.], [1.,2.,3.], [1.,2.,3.], [1.,2.,3.]] ) ''' a = torch.Tensor原创 2021-09-11 16:25:05 · 752 阅读 · 0 评论 -
在本地浏览器显示服务器端运行的tensorboard
使用tensorboard必须安装tensorflow,但发现官网没有提供旧版本tensorflow-1.12.0。可以从原创 2019-07-15 19:31:01 · 904 阅读 · 1 评论