Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

beginner_source/introyt/introyt1_tutorial.py 오타 수정 #969

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion beginner_source/introyt/introyt1_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def num_flat_features(self, x):
# 대부분의 활성화 함수는 x = 0 부근에서 강한 기울기 값을 가지고 있어 데이터를
# 중앙으로 집중화하여 학습 속도를 높일 수 있습니다.
#
# 변환(trnasform)에 전달되는 값들은 각각 데이터셋에 있는 이미지들의 RGB 채널별
# 변환(transform)에 전달되는 값들은 각각 데이터셋에 있는 이미지들의 RGB 채널별
# 평균값(mean)들(첫번째 튜플)과 표준편차(standard deviation)들(두번째 튜플)입니다.
# 아래 몇 줄의 코드를 실행하여 직접 이 값을 계산해 볼 수 있습니다:
# ```
Expand Down