Skip to content

Commit 59f4d56

Browse files
committed
intro to pytorch: Part 2, next() is not a method
1 parent c9404fc commit 59f4d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intro-to-pytorch/Part 2 - Neural Networks in PyTorch (Solution).ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
],
113113
"source": [
114114
"dataiter = iter(trainloader)\n",
115-
"images, labels = dataiter.next()\n",
115+
"images, labels = next(dataiter)\n",
116116
"print(type(images))\n",
117117
"print(images.shape)\n",
118118
"print(labels.shape)"

0 commit comments

Comments
 (0)