Keon

Results 27 comments of Keon

안녕하세요. 깃헙에 있는 예제가 좀 더 최신의 맞는 예제입니다. 2쇄가 나오며 고쳤는데 아직 서점에 풀리지 않은 것 같습니다 ㅠㅠ. 기존 책에는 설명하면서 클래스 이름을 CNN으로 썼으나 전체코드에선 Net으로 하여 혼돈을...

네 제가 체크하지 못해 내용상 오류가 있었습니다 ㅠㅠ. 다른분들도 보실 수 있게 이슈를 열어두겠습니다. 감사합니다

답이 늦어서 죄송합니다. 문의주신 내용이 맞습니다. 파이토치에선 `cross_entropy`함수 내에서 `log_softmax`를 적용하기 때문에 `log_softmax`를 적용하지 않은 `logit` (코드에선 x)를 출력하는게 맞습니다. 다행히도 `log_softmax`를 두번 적용하더라도 결과값은 같기에 학습에 차이는 없습니다. 컨셉트를...

제보 감사합니다. 그렇네요.. ㅠㅠ 의도대로라면 아래와 같아야 합니다. ``` noisy_x = add_noise(x) # 입력에 노이즈 더하기 noisy_x = noisy_x.view(-1, 28*28).to(DEVICE) y = x.view(-1, 28*28).to(DEVICE) label = label.to(DEVICE) encoded, decoded =...

sounds good! I wanted to clean the repo up so bad, but didn't have time :(. Would be awesome if we could get contribution.

Yes :) feel free to take any tasks you want

Yeah, PEP8 is good and I think it is important. The current implementation has mixed styles, which I think is confusing. I just didn't have time to organize them. I...

I've been busy recently, and haven't really got the time to work on it. Don't worry about PyPI README, I think only a small fraction of users see the doc...

sorry for the long overdue response. of course, all files should be in Python3 since it is the future!