반응형
torch 에서 xavier 가중치 초기화 기능을 제공한다.
def init_weights(m):
if type(m) == nn.Linear:
torch.nn.init.xavier_uniform_(m.weight)
m.bias.data.fill_(0.01)
반응형
'Python > PyTorch 공부' 카테고리의 다른 글
[PyTorch]GPU와 CUDA 호환 확인하기 (0) | 2021.11.25 |
---|---|
[Pytorch] nn.Unsample에서 align_corners=False? True? (0) | 2021.11.18 |
[PyTorch] Boolean value of Tensor with more than one value is ambiguous (0) | 2021.10.31 |
[에러 해결] CUDA error: CUBLAS_STATUS_INTERNAL_ERROR when calling `cublasCreate(handle) (3) | 2021.09.14 |
[PyTorch] nn.Sequential 을 상속받아 Class 정의하기 (0) | 2021.08.04 |