Skip to content

Commit e81bceb

Browse files
committed
Minor update
1 parent 5d0d18e commit e81bceb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

05b - Convolutional Neural Networks (PyTorch).ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@
152152
"\n",
153153
"\n",
154154
"# Get the iterative dataloaders for test and training data\n",
155-
"train_loader, test_loader = load_dataset(data_path)"
155+
"train_loader, test_loader = load_dataset(data_path)\n",
156+
"print('Data loaders ready')"
156157
]
157158
},
158159
{

05b - Convolutional Neural Networks (Tensorflow).ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
" subset='validation') # set as validation data\n",
126126
"\n",
127127
"classnames = list(train_generator.class_indices.keys())\n",
128-
"print(\"class names: \", classnames)"
128+
"print('Data generators ready')"
129129
]
130130
},
131131
{

0 commit comments

Comments
 (0)