torch.save(model, PATH)
# 모델 클래스는 어딘가에 반드시 선언되어 있어야 합니다.
model = torch.load(PATH)
model.eval()
torch.save(model.state_dict(), PATH)
model = TheModelClass(*args, **kwargs)
model.load_state_dict(torch.load(PATH))
model.eval()
https://tutorials.pytorch.kr/beginner/saving_loading_models.html
인간은 왜 같은 실수를 반복할까?