Skip to content

Commit e332dd8

Browse files
author
Youngmin Baek
committed
add torch.no_grad()
1 parent 3cd65f5 commit e332dd8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,17 @@ def test_net(net, image, text_threshold, link_threshold, low_text, cuda, poly, r
8181
x = x.cuda()
8282

8383
# forward pass
84-
y, feature = net(x)
84+
with torch.no_grad():
85+
y, feature = net(x)
8586

8687
# make score and link map
8788
score_text = y[0,:,:,0].cpu().data.numpy()
8889
score_link = y[0,:,:,1].cpu().data.numpy()
8990

9091
# refine link
9192
if refine_net is not None:
92-
y_refiner = refine_net(y, feature)
93+
with torch.no_grad():
94+
y_refiner = refine_net(y, feature)
9395
score_link = y_refiner[0,:,:,0].cpu().data.numpy()
9496

9597
t0 = time.time() - t0

0 commit comments

Comments
 (0)