< 모델 구축 - 정해진 구조 >
class 모델이름(nn.Moldule):
def __init__(self):
super().init__()
#사용할 레이어 종류와 입출력 크기 정의하기
self.l1(input=10, output=20)
self.l2(input=20, output=10)
...
def forward(self, x): #x가 입력 받은 데이터를 말함
#입력 데이터 x를 가지고 어떠한 레이어를 거쳐 연산을 수행할지 순차적으로 나열함
x2 = self.l1(x)
output=self.l2(x2)
return output