-
Notifications
You must be signed in to change notification settings - Fork 17
[개인과제2] DCGAN 번역 연습 #6
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: main
Are you sure you want to change the base?
Conversation
It can be constructed using the function `.buildNoiseData`. | ||
The model has a `.test` function that takes in the noise vector and generates images. | ||
모델에 입력하는 노이즈 벡터의 크기는 `(N, 120)` 이며 여기서 `N`은 생성하고자 하는 이미지의 개수입니다. | ||
데이터 생성은 `.buildNoiseData` 함수를 사용하여 구성될 수 있습니다. |
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.
buildNoiseData()
함수를 사용하여 데이터를 생성할 수(구성할 수) 있습니다.
정도의 능동형으로 바꾸면 어떨까요?
|
||
If you want to train your own DCGAN and other GANs from scratch, have a look at [PyTorch GAN Zoo](https://github.com/facebookresearch/pytorch_GAN_zoo). | ||
만약 본 예제의 GANs과 다른 본인만의 DCGAN을 학습시키고 싶다면, 이곳을 살펴보세요 [PyTorch GAN Zoo](https://github.com/facebookresearch/pytorch_GAN_zoo). |
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.
GANs -> 'GAN들' 로 번역하는것은 어떨까요?
다른 GAN들이나 DCGAN을 처음부터 학습시키고 싶다면...? 정도로 번역하는 것은 어떨지 조심스럽게 제안드려봅니다 :)
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.
오 좋은거 같습니다. 저도 관련되서 자료를 찾아 보았습니다.
https://blog.daum.net/standards/369 글에는 아래와 같이 나타나있습니다.
영어에서는 명사가 둘 이상이면 복수를 나타내는 '-s/-es'를 꼭 붙입니다. 우리말에도 복수를 나타내는 표시로 '들'이 있습니다. 그런데 우리말에서는 명사가 둘 이상일 때 '들'을 꼭 붙일 필요가 없습니다.
해당 규칙은 멘토 님들 한테도 문의해서 표준을 만들면 좋을 거 같습니다.
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.
넵 ㅎㅎ GANs 에서 s 만 제거되어도 좋을 것 같습니다 :)
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.
[수정]
- GANs -> GAN
확인해주셔서 감사합니다..!
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.
훌륭한 번역이었습니다.
@@ -41,9 +41,9 @@ plt.imshow(torchvision.utils.make_grid(generated_images).permute(1, 2, 0).cpu(). | |||
# plt.show() | |||
``` | |||
|
|||
You should see an image similar to the one on the left. | |||
왼쪽에 있는것과 유사한 이미지를 살펴볼 수 있습니다. |
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.
'왼 쪽에 있는 이미지와 유사하다는 것을 알 수 있습니다. '는 어떨까용??
라이선스 동의
변경해주시는 내용에 BSD 3항 라이선스가 적용됨을 동의해주셔야 합니다.
더 자세한 내용은 기여하기 문서를 참고해주세요.
동의하시면 아래
[ ]
를[x]
로 만들어주세요.관련 이슈 번호
이 Pull Request와 관련있는 이슈 번호를 적어주세요.
이슈 또는 PR 번호 앞에 #을 붙이시면 제목을 바로 확인하실 수 있습니다. (예. #999 )
PR 종류
이 PR에 해당되는 종류 앞의
[ ]
을[x]
로 변경해주세요.PR 설명
이 PR로 무엇이 달라지는지 대략적으로 알려주세요.
개인과제2로 두 문단 정도 번역한 연습 PR입니다.