Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions beginner_source/former_torchies/nnft_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

디버깅은 Python의 pdb 디버거를 사용하여 직관적이며,
**디버거와 스택 추적(stack trace)은 에러가 발생한 곳에서 정확히 멈춥니다.**
이제 보이는대로 얻을 것입니다. (What you see is what you get.)
이제 보이는 대로 얻을 것입니다. (What you see is what you get.)

예제1: 합성곱 신경망(ConvNet)
-----------------------------
Expand Down Expand Up @@ -76,7 +76,7 @@ def forward(self, input):
#
# 심지어 반복문을 만들고 그 안에서 동일한 모듈을 재사용해도 됩니다.
# 모듈은 더 이상 일시적인 상태를 갖고 있지 않으므로,
# 순전파 단계에서 여러번 사용해도 괜찮습니다.
# 순전파 단계에서 여러 번 사용해도 괜찮습니다.
# while x.norm(2) < 10:
# x = self.conv1(x)

Expand Down