PyTorch Code Snippets
程序员文章站
2024-03-23 20:14:04
...
1. 卷积计算
代码如下:
import torch
filter = torch.nn.Conv2d(2, 1, 2, 1, 1, 3, bias=False)
filter.weight[0][0][0][0]=2
filter.weight[0][0][0][1]=1
filter.weight[0][0][1][0]=1
filter.weight[0][0][1][1]=-1
filter.weight[0][1][0][0]=-3
filter.weight[0][1][0][1]=2
filter.weight[0][1][1][0]=-2
filter.weight[0][1][1][1]=3
x = torch.FloatTensor([[[[4,-3,2,2],[3,5,-2,3],[0,-4,1,7],[-8,2,9,2]], [[1,-5,3,7],[3,6,9,-2],[2,4,2,-1],[2,-2,7,0]]]])
filter(x)
上一篇: LLVM开发插件以及遇到问题
下一篇: 排序总结(不断更新)
推荐阅读
-
Creating your own snippets in vs code
-
vim配置之snippets代码块
-
PyTorch Code Snippets
-
二、pytorch核心概念:1.张量数据结构
-
PyTorch torch.optim.lr_scheduler 学习率设置 调参 -- CosineAnnealingLR
-
Pytorch(0)降低学习率torch.optim.lr_scheduler.ReduceLROnPlateau类
-
pyinstaller打包pytorch程序的一系列问题
-
〖算法面试刷题〗windows10系统中visual studio code配置c/c++开发环境!
-
Pytorch demo(一)之分类测试识别
-
重构之Code Small 代码的坏味道