We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
파이썬 코드 LeNet-5을 실습하는 과정에서 모델에 device를 넣는 부분이 누락되어있어 이슈 드립니다!
model = LeNet() 이 부분을 model = LeNet().to(device)로 변경해야할 것 같습니다 :)
model = LeNet()
model = LeNet().to(device)
책에서는 코드 6-11 모델 객체 생성 부분입니다! 좋은책 써주셔서 감사합니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
파이썬 코드 LeNet-5을 실습하는 과정에서 모델에 device를 넣는 부분이 누락되어있어 이슈 드립니다!
model = LeNet()
이 부분을model = LeNet().to(device)
로 변경해야할 것 같습니다 :)책에서는 코드 6-11 모델 객체 생성 부분입니다! 좋은책 써주셔서 감사합니다.
The text was updated successfully, but these errors were encountered: