摘要: LINEAR LAYERS Linear Examples: >>> m = nn.Linear(20, 30) >>> input = torch.randn(128, 20) >>> output = m(input) >>> print(output.size()) torch.Size([1 阅读全文
posted @ 2019-01-30 12:01 铃铃漆007 阅读(14264) 评论(1) 推荐(1) 编辑