- 학습이 너무 느려서 멘토님께 여쭤봤다가 GPU 써보셨냐고 해서 안되는 줄 알았다니깐 가능하대서 바로 써봄. # 주피터에서 pytorch 설치 !pip install torch torchvision torchaudio # pytorch 버전 확인 필요!! PyTorch 1.12 이상 버전에서 M1의 GPU를 활용import torchprint(torch.__version__) # PyTorch 버전 확인# MPS는 M1 GPU에서 Metal API를 사용하는 PyTorch 백엔드입니다.print(torch.backends.mps.is_available()) # M1 GPU(Metal)가 사용 가능한지 확인# True 나와야 함#torch는 gpu를 기본값으로 쓰도록 설정 -> 이거 안하면 CPU가 ..