From 35ae107e9e3463af6857fbf57c6d5f1e81de42f1 Mon Sep 17 00:00:00 2001 From: rltq Date: Tue, 7 Apr 2026 07:50:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?docs:=20nn=5Ftutorial=20=EB=A7=88=EC=B9=A8?= =?UTF-8?q?=ED=91=9C=20=EC=A4=91=EB=B3=B5=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- beginner_source/nn_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/nn_tutorial.py b/beginner_source/nn_tutorial.py index b68b5a27e..67de99d38 100644 --- a/beginner_source/nn_tutorial.py +++ b/beginner_source/nn_tutorial.py @@ -715,7 +715,7 @@ def forward(self, xb): # # ``torch.nn`` 에는 코드를 간단히 사용할 수 있는 또 다른 편리한 클래스인 # `Sequential `_ -# 이 있습니다.. +# 이 있습니다. # ``Sequential`` 객체는 그 안에 포함된 각 모듈을 순차적으로 실행합니다. # 이것은 우리의 신경망을 작성하는 더 간단한 방법입니다. # From 16dd04446c32ce51d4bbeac85acefa86951a6854 Mon Sep 17 00:00:00 2001 From: rltq Date: Tue, 7 Apr 2026 08:16:42 +0900 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20nn=5Ftutorial=20=EC=9B=90=EB=AC=B8?= =?UTF-8?q?=20=EB=B0=A9=ED=96=A5=EC=97=90=20=EB=A7=9E=EA=B2=8C=20=EB=B2=88?= =?UTF-8?q?=EC=97=AD=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- beginner_source/nn_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/nn_tutorial.py b/beginner_source/nn_tutorial.py index 67de99d38..c2d45d5b0 100644 --- a/beginner_source/nn_tutorial.py +++ b/beginner_source/nn_tutorial.py @@ -713,7 +713,7 @@ def forward(self, xb): # ``nn.Sequential`` 사용하기 # ---------------------------- # -# ``torch.nn`` 에는 코드를 간단히 사용할 수 있는 또 다른 편리한 클래스인 +# ``torch.nn`` 에는 코드를 간단히 할 수 있는 또 다른 편리한 클래스인 # `Sequential `_ # 이 있습니다. # ``Sequential`` 객체는 그 안에 포함된 각 모듈을 순차적으로 실행합니다.