欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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
    
    

相关标签: Pytorch

上一篇: 贪食蛇

下一篇: 装饰者模式(一)