[pytorch] torch.nn.Sequential

J·2021년 2월 18일
0

pytorch

목록 보기
2/23

파이토치로 신경망을 구축하는 방법에는 두가지가 있다.
첫번째는 torch.nn.Sequential을 활용하는 것이다. 이 함수는 네트워크를 인스턴스화하는 동시에, 원하는 신경망에 연산 순서를 인수로 전달한다.

CLASS torch.nn.Sequential(*args : Any)

A seqential containier. Modules will be added to it in the order they are passed in the constructor. Alternatively, an ordered dict of modules can also be passed in.

순차적인 container이다. torch.nn.Sequential에 전달되는 순서대로 연산 모듈이 추가된다.
ordered dict를 연산을 전달하는 인자로 사용할 수도 있다.

예제

import torch.nn as nn
from collections import OrderedDict
# Example of using Sequential
model = nn.Sequential(
          nn.Conv2d(1,20,5),
          nn.ReLU(),
          nn.Conv2d(20,64,5),
          nn.ReLU()
        )

# Example of using Sequential with OrderedDict
model = nn.Sequential(OrderedDict([
          ('conv1', nn.Conv2d(1,20,5)),
          ('relu1', nn.ReLU()),
          ('conv2', nn.Conv2d(20,64,5)),
          ('relu2', nn.ReLU())
        ]))

출처

  1. https://pytorch.org/docs/stable/generated/torch.nn.Sequential.html#torch.nn.Sequential
  2. 파이토치 1.x로 시작하는 딥러닝, 비슈누 수브라마니안, 로라 미첼, 스리 요게시 K, DKRoad Books(2020)
profile
I'm interested in processing video&images with deeplearning and solving problem in our lives.

0개의 댓글