기본편 - 자동 저장 Saving and loading checkpoints (basic) — PyTorch Lightning 1.9.0 documentation Shortcuts pytorch-lightning.readthedocs.io PyTorch Lightning의 Trainer을 이용해 학습을 진행하면, 자동으로 가장 마지막 training epoch의 checkpoint를 저장해준다. trainer = Trainer() 만약 checkpoint가 저장되는 위치를 바꾸고 싶다면 다음과 같이 지정해줄 수 있다. trainer = Trainer(default_root_dir='path/to/') 혹은 별도로 checkpoint 저장을 하지 않으려면 다음과 같이 지정하면 된다. trainer = Tr..