[개인과제2] DCGAN 번역 연습#6
Open
zerojin91 wants to merge 1 commit into
Open
Conversation
zhoonit
reviewed
Jul 27, 2022
| 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.
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.
GANs -> 'GAN들' 로 번역하는것은 어떨까요?
다른 GAN들이나 DCGAN을 처음부터 학습시키고 싶다면...? 정도로 번역하는 것은 어떨지 조심스럽게 제안드려봅니다 :)
There was a problem hiding this comment.
오 좋은거 같습니다. 저도 관련되서 자료를 찾아 보았습니다.
https://blog.daum.net/standards/369 글에는 아래와 같이 나타나있습니다.
영어에서는 명사가 둘 이상이면 복수를 나타내는 '-s/-es'를 꼭 붙입니다. 우리말에도 복수를 나타내는 표시로 '들'이 있습니다. 그런데 우리말에서는 명사가 둘 이상일 때 '들'을 꼭 붙일 필요가 없습니다.
해당 규칙은 멘토 님들 한테도 문의해서 표준을 만들면 좋을 거 같습니다.
Author
There was a problem hiding this comment.
[수정]
- GANs -> GAN
확인해주셔서 감사합니다..!
cherimlee
reviewed
Jul 30, 2022
| ``` | ||
|
|
||
| You should see an image similar to the one on the left. | ||
| 왼쪽에 있는것과 유사한 이미지를 살펴볼 수 있습니다. |
There was a problem hiding this comment.
'왼 쪽에 있는 이미지와 유사하다는 것을 알 수 있습니다. '는 어떨까용??
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
라이선스 동의
변경해주시는 내용에 BSD 3항 라이선스가 적용됨을 동의해주셔야 합니다.
더 자세한 내용은 기여하기 문서를 참고해주세요.
동의하시면 아래
[ ]를[x]로 만들어주세요.관련 이슈 번호
이 Pull Request와 관련있는 이슈 번호를 적어주세요.
이슈 또는 PR 번호 앞에 #을 붙이시면 제목을 바로 확인하실 수 있습니다. (예. #999 )
PR 종류
이 PR에 해당되는 종류 앞의
[ ]을[x]로 변경해주세요.PR 설명
이 PR로 무엇이 달라지는지 대략적으로 알려주세요.
개인과제2로 두 문단 정도 번역한 연습 PR입니다.