PyTorch_view
代码
import torch
import torch.nn as nninput = torch.randn(1, 512, 1, 1)
output = input.view(input.size(0), -1)
print(output.size())torch.Size([1, 512])
import torch
import torch.nn as nninput = torch.randn(1, 512, 1, 1)
output = input.view(-1, input.size(0))
print(output.size())torch.Size([512, 1])
引用 <1>
torch=1.7.1+cu101
torchvision=0.8.2
torchaudio=0.7.2
推荐阅读
- CVE-2020-16898|CVE-2020-16898 TCP/IP远程代码执行漏洞
- 列出所有自定义的function和view
- 不废话,代码实践带你掌握|不废话,代码实践带你掌握 强缓存、协商缓存!
- tableView|tableView 头视图下拉放大 重写
- 工具|后天就是七夕节,你准备好了吗(送上几个七夕代码,展示你技能的时候到了!)
- pytorch|使用pytorch从头实现多层LSTM
- 记录iOS生成分享图片的一些问题,根据UIView生成固定尺寸的分享图片
- 《机器学习实战》高清中文版PDF英文版PDF+源代码下载
- 霍兰德职业代码对照表
- Flutter的ListView