Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Kerfoot <[email protected]>
  • Loading branch information
ericspod committed Sep 20, 2024
1 parent dfc1ebf commit 699446d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions generation/3d_autoencoderkl/3d_autoencoderkl_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,8 @@
"n_evaluations = min(5, len(intermediary_images))\n",
"\n",
"fig, axs = plt.subplots(nrows=n_evaluations, ncols=3, constrained_layout=True, figsize=(8, 6))\n",
"if not isinstance(axs[0], tuple):\n",
" axs = (axs,)\n",
"\n",
"# Remove ticks\n",
"for ax in axs.flatten():\n",
Expand Down

0 comments on commit 699446d

Please sign in to comment.