You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test_x=Variable(torch.unsqueeze(test_data.test_data, dim=1), volatile=True).type(torch.FloatTensor)[:2000]/255.# shape from (2000, 28, 28) to (2000, 1, 28, 28), value in range(0,1)
55
+
test_x=torch.unsqueeze(test_data.test_data, dim=1).type(torch.FloatTensor)[:2000]/255.# shape from (2000, 28, 28) to (2000, 1, 28, 28), value in range(0,1)
0 commit comments