mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
dlr/predict typo
This commit is contained in:
parent
0140e93bbd
commit
864dfa802d
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ def get_overlay(image, coloured_mask):
|
||||||
|
|
||||||
def plot_samples_matplotlib(filepath, display_list, figsize=(5, 3)):
|
def plot_samples_matplotlib(filepath, display_list, figsize=(5, 3)):
|
||||||
for i in range(len(display_list)):
|
for i in range(len(display_list)):
|
||||||
plt.subplot(1, len(display_list), i)
|
plt.subplot(1, len(display_list), i+1)
|
||||||
if display_list[i].shape[-1] == 3:
|
if display_list[i].shape[-1] == 3:
|
||||||
plt.imshow(tf.keras.preprocessing.image.array_to_img(display_list[i]))
|
plt.imshow(tf.keras.preprocessing.image.array_to_img(display_list[i]))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue