Skip to content

Commit

Permalink
remove bad spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonks684 committed Aug 15, 2024
1 parent 48ca005 commit 91692f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def visualise_results(phase_images, target_stains, virtual_stains, crop_size=Non
"""
fig, axes = plt.subplots(5, 3, figsize=(15, 20))
sample_indices = np.random.choice(len(phase_images), 5)
for index in enumerate(sample_indices):
for index,sample in enumerate(sample_indices):
if crop_size:
phase_images[index] = crop(phase_images[index], crop_size, type)
target_stains[index] = crop(target_stains[index], crop_size, type)
Expand Down

0 comments on commit 91692f4

Please sign in to comment.