기술 성공, 실패 기록소

pytorch view method 본문

followbot

pytorch view method

sunlab 2021. 3. 27. 07:06
728x90

stackoverflow.com/questions/42479902/how-does-the-view-method-work-in-pytorch

 

How does the "view" method work in PyTorch?

I am confused about the method view() in the following code snippet. class Net(nn.Module): def __init__(self): super(Net, self).__init__() self.conv1 = nn.Conv2d(3, 6, 5)

stackoverflow.com

 

'followbot' 카테고리의 다른 글

LSTM tutorial : How to apply LSTM using PyTorch  (0) 2021.03.27
optimizer.zero_grad()가 필요한 이유  (0) 2021.03.27
StandardScaler, MinMaxScaler  (0) 2021.03.27
ReLU  (0) 2021.03.25
optimization, optimizer  (0) 2021.03.25