diff --git a/intermediate_source/seq2seq_translation_tutorial.py b/intermediate_source/seq2seq_translation_tutorial.py index 659667efc..cb201af5d 100644 --- a/intermediate_source/seq2seq_translation_tutorial.py +++ b/intermediate_source/seq2seq_translation_tutorial.py @@ -491,7 +491,7 @@ def tensorsFromPair(pair): # # 학습을 위해서 인코더에 입력 문장을 넣고 모든 출력과 최신 은닉 상태를 # 추적합니다. 그런 다음 디코더에 첫 번째 입력으로 ```` 토큰과 -# 인코더의 마지막 은닉 상태가 첫번쩨 은닉 상태로 제공됩니다. +# 인코더의 마지막 은닉 상태가 첫 번째 은닉 상태로 제공됩니다. # # "Teacher forcing"은 다음 입력으로 디코더의 예측을 사용하는 대신 # 실제 목표 출력을 다음 입력으로 사용하는 컨셉입니다.