최대(Max) : 원소의 최대값을 리턴아그맥스(ArgMax) : 최대값을 가진 인덱스를 리턴
torch.tensor.scatter_ scatter_를 사용하는 방식은 원핫 인코딩을 할 때도 편리함. >python #열방향으로(가로방향으로, dim=1) (0,2) 자리에 1.23, (0,3) 자리에 1.23 넣기 z = torch.zeros(2, 4).scat
Convert numbers to probabilities with softmax.$$P(class = i) = \\frac{e^i}{\\sum e^i}$$PyTorch has a softmax function. ( F.softmax() )For multi-class
torch.nn.Module Base class for all neural network modules. Your models should also subclass this class. super().init()이란? super() : 상속받은 부모클래스를 의미 부모
: 연속된 범위를 가진 차원을 하나의 텐서로 Flatten해준다.< Example1 >< Example2 > < Image data >reference : https://pytorch.org/docs/stable/generated/torch.n
from torch.autograd import Variable torch.autograd : 자동 미분 패키지 Variable : torch.autograd 안에 있는 클래스 Variable 클래스 사용버 1) Variabel에 Tensor를 감싼다. 그리고 req
\_\_init\_\_.py\_\_model\_\_.pymain.py... 여기서 untils 폴더 안에 있는 model.py에서 BetaVAE_H라는 함수를 main.py에 불러오고 싶을 때 -> from utils.model import BetaVAE_H ERROR
huggingface에서 모델 파일 전부 다운로드 -> 모델 안에 kykim\\bert-kor-base 폴더 만들고 그 안에 다운로드 받은 파일 전부 저장https://huggingface.co/kykim/bert-kor-base/tree/main모델 불러올때