Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

3장 p96 오타 #17

Open
ysangj opened this issue Oct 31, 2019 · 0 comments
Open

3장 p96 오타 #17

ysangj opened this issue Oct 31, 2019 · 0 comments

Comments

@ysangj
Copy link
Collaborator

ysangj commented Oct 31, 2019

96 페이지의 코드블락을 수정해야 합니다.

현재:

model.eval()
test_loss_before = criterion(torch.squeeze(model(x_test)), y_test)
print('After Training, test loss is {}'.format(test_loss.item()))

수정:

model.eval()
test_loss = criterion(torch.squeeze(model(x_test)), y_test)
print('After Training, test loss is {}'.format(test_loss.item()))
@keon keon changed the title 3장 오타 96페이지 3장 96p 오타 Nov 9, 2019
@keon keon changed the title 3장 96p 오타 3장 p96 오타 Dec 15, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant