Skip to content

Commit 267a31a

Browse files
committed
update
1 parent c1f9a37 commit 267a31a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

05-Recurrent Neural Network/recurrent_network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ def forward(self, x):
9191
epoch + 1, running_loss / (len(train_dataset)), running_acc / (len(
9292
train_dataset))))
9393
model.eval()
94-
eval_loss = 0
95-
eval_acc = 0
94+
eval_loss = 0.
95+
eval_acc = 0.
9696
for data in test_loader:
9797
img, label = data
9898
b, c, h, w = img.size()

0 commit comments

Comments
 (0)