Skip to content
Snippets Groups Projects

made so code can be trained on GPU

Merged AC4908 requested to merge test_expanding_model into main
5 files
+ 82
138
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 1
1
@@ -6,7 +6,7 @@ def plot_images(images, labels, class_indices):
num_images = len(images)
grid_size = int(np.ceil(np.sqrt(num_images)))
plt.figure(figsize=(15, 15))
plt.figure()
for i in range(num_images):
plt.subplot(grid_size, grid_size, i + 1)
img = images[i]
Loading