pytorch基础——nn.Module模块
程序员文章站
2022-06-12 22:43:48
...
nn.Module模块
- pytorch中所有的层结构和损失函数都来自于torch.nn
- 所有的模型结构都是从nn.Module继承的
"""nn.Module模块定义一个计算图,并且这个结构可以复用多次"""
from torch import nn.Module
class net_name(nn.Module):
# 继承
def __init__(self, other_arguments):
super(net_name, self).__init__()
self.conv1 = nn.Conv2d(in_channels=channels, out_channels, kernel_size)
# other network layer
def forward(self, x):
x = self.conv1
return x