Soo
Results
2
comments of
Soo
@LIFOsitory 감사합니다! 가이드 문서도 수정했습니다. :)
you can find how to save your model in pytorch documentation. [SAVING AND LOADING MODELS](https://pytorch.org/tutorials/beginner/saving_loading_models.html) In that notebook, insert theses code after model trained. ``` torch.save({ 'encoder_state_dict': encoder.state_dict(), 'decoder_state_dict': decoder.state_dict(),...