We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0f999d + ba94d6c commit b3ed317Copy full SHA for b3ed317
03-Neural Network/neural_network.py
@@ -93,7 +93,7 @@ def forward(self, x):
93
img = Variable(img, volatile=True).cuda()
94
label = Variable(label, volatile=True).cuda()
95
else:
96
- img = Variabel(img, volatile=True)
+ img = Variable(img, volatile=True)
97
label = Variable(label, volatile=True)
98
out = model(img)
99
loss = criterion(out, label)
0 commit comments