-
Notifications
You must be signed in to change notification settings - Fork 294
오탈자 수정 #1069
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
base: master
Are you sure you want to change the base?
오탈자 수정 #1069
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ | |
| 실제로 충분한 크기의 데이터셋을 갖추기는 상대적으로 드물기 때문에, | ||
| (무작위 초기화를 통해) 맨 처음부터 합성곱 신경망(Convolutional | ||
| Network) 전체를 학습하는 사람은 매우 적습니다. 대신, 매우 큰 데이터셋(예. | ||
| 100가지 분류에 대해 120만개의 이미지가 포함된 ImageNet)에서 합성곱 | ||
| 100가지 분류에 대해 120만 개의 이미지가 포함된 ImageNet)에서 합성곱 | ||
| 신경망(ConvNet)을 미리 학습한 후, 이 합성곱 신경망을 관심있는 작업 | ||
| 을 위한 초기 설정 또는 고정된 특징 추출기(fixed feature extractor)로 사용합니다. | ||
|
|
||
|
|
@@ -56,7 +56,7 @@ | |
| # | ||
| # 데이터를 불러오기 위해 torchvision과 torch.utils.data 패키지를 사용하겠습니다. | ||
| # | ||
| # 여기서 풀고자 하는 문제는 **개미** 와 **벌** 을 분류하는 모델을 학습하는 것입니다. | ||
| # 여기서 풀고자 하는 문제는 **개미**\와 **벌**\을 분류하는 모델을 학습하는 것입니다. | ||
| # 개미와 벌 각각의 학습용 이미지는 대략 120장 정도 있고, 75개의 검증용 이미지가 | ||
| # 있습니다. 일반적으로 맨 처음부터 학습을 한다면 이는 일반화하기에는 아주 작은 | ||
| # 데이터셋입니다. 하지만 우리는 전이학습을 할 것이므로, 일반화를 제법 잘 할 수 있을 | ||
|
|
@@ -65,7 +65,7 @@ | |
| # 이 데이터셋은 ImageNet의 아주 작은 일부입니다. | ||
| # | ||
| # .. Note :: | ||
| # 데이터를 `여기 <https://download.pytorch.org/tutorial/hymenoptera_data.zip>`_ | ||
| # 데이터를 `여기 <https://download.pytorch.org/tutorial/hymenoptera_data.zip>`_\ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 줄 바꿈이 없을때는 링크 뒤에 \가 필요한데 이 경우에는 줄바꿈이 있어서 필요없습니다
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이거는 원본 문서를 보고 확인 부탁드립니다 |
||
| # 에서 다운로드 받아 현재 디렉토리에 압축을 푸십시오. | ||
|
|
||
| # 학습을 위해 데이터 증가(augmentation) 및 일반화(normalization) | ||
|
|
@@ -272,7 +272,7 @@ def visualize_model(model, num_images=6): | |
| # 학습 및 평가하기 | ||
| # ^^^^^^^^^^^^^^^^^^ | ||
| # | ||
| # CPU에서는 15-25분 가량, GPU에서는 1분 이내의 시간이 걸립니다. | ||
| # CPU에서는 15-25분가량, GPU에서는 1분 이내의 시간이 걸립니다. | ||
| # | ||
|
|
||
| model_ft = train_model(model_ft, criterion, optimizer_ft, exp_lr_scheduler, | ||
|
|
@@ -320,7 +320,7 @@ def visualize_model(model, num_images=6): | |
| # 학습 및 평가하기 | ||
| # ^^^^^^^^^^^^^^^^^ | ||
| # | ||
| # CPU에서 실행하는 경우 이전과 비교했을 때 약 절반 가량의 시간만이 소요될 것입니다. | ||
| # CPU에서 실행하는 경우 이전과 비교했을 때 약 절반가량의 시간만이 소요될 것입니다. | ||
| # 이는 대부분의 신경망에서 경사도를 계산할 필요가 없기 때문입니다. 하지만, | ||
| # 순전파는 계산이 필요합니다. | ||
| # | ||
|
|
||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기서 \는 없애는게 좋겠습니다. 기존에도 띄어쓰기로 해결한 부분이고 text뒤에는 붙여써도 이상없이 warning이 없을것입니다
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
피드백 감사합니다! 띄어쓰기로 해결했을 때 '개미 와 벌 을' 로 처리되어 이를 '개미와 벌을' 로 붙이고자하여 \를 붙였었는데 이때 \ 없이 붙였을때 볼드체를 위한 **표시가 나타나 해당 방식으로 처리했었습니다. 그냥 기존 띄어쓰기로 해결하도록 두는 것이 좋을까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이건 말씀해주신대로 붙여서 쓰는게 낫겠네요 \가 있어야할 상황같습니다