Skip to content

Commit b22514b

Browse files
authored
Fix syntax error in plotting code
1 parent ba0cd17 commit b22514b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

colab_notebooks/Notebook08_UNets_PyTorch.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@
807807
"fig,axes = plt.subplots(1,2,figsize=(10,5))\n",
808808
"pm = axes[0].imshow(one_example_label)\n",
809809
"plt.colorbar(pm,ax=axes[0])\n",
810-
"pm = axes[1].imshow(one_example_pred, vmin=0, vmax=1))\n",
810+
"pm = axes[1].imshow(one_example_pred, vmin=0, vmax=1)\n",
811811
"plt.colorbar(pm,ax=axes[1],label='lightning_prob')\n",
812812
"\n",
813813
"\n",
@@ -1691,4 +1691,4 @@
16911691
},
16921692
"nbformat": 4,
16931693
"nbformat_minor": 0
1694-
}
1694+
}

0 commit comments

Comments
 (0)