[NLP]PyTorch로 번역기 구현하기 vol1
Seq2Seq In [1]: from google.colab import drive import sys from IPython import display import os drive . mount ( '/content/drive' ) FOLDERNAME = 'translation' sys . path . append ( 'content/drive/My Drive/ {} ' . format ( FOLDERNAME )) % cd /content/drive/My Drive/$FOLDERNAME % load_ext autoreload % autoreload 2 Mounted at /content/drive /content/drive/My Drive/translation ref ¶ embedding https://pytorch.org/tutorials/beginner/nlp/word_embeddings_tutorial.html paper: https://arxiv.org/abs/1301.3781 Seq2Seq 0) paper: https://arxiv.org/abs/1409.3215 1) Pytorch Seq2Seq Tutorial for Machine Translation(Youtuber: Aladdin Persson): https://www.youtube.com/watch?v=EoGUlvhRYpk&list=PLhhyoLH6IjfxeoooqP9rhU3HJIAVAJ3Vz&index=38 2) github: https://github.com/bentrevett/pytorch-seq2seq 3) PyTorch tutorial https://pyto...