pytorch1 PyTorch nn.Linear 참조 : https://pytorch.org/docs/stable/generated/torch.nn.Linear.html Fully Connected Layer 구성 시 기본적으로 선택하는 식 중 하나 입력 데이터 x에 대해 Linear Transformation (선형 변환)을 계산한다. $$ y = xA^{T}+b $$ class Torch.nn.Linear (in_features, out_features, bias=True, device=None, dtype=None) Parameters: in_features (int) : input sample의 size out_features (int) : output sample의 size bias (bool) : (b term), Default : True.. 2023. 2. 6. 이전 1 다음