Skip to content

Commit b4987ad

Browse files
authored
Update brats_segmentation_3d.ipynb (Project-MONAI#15)
fix: "WC" typo instead of "WT" for whole tumor
1 parent 5f4dbd6 commit b4987ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

brats_segmentation_3d.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
" label 1 is the peritumoral edema\n",
220220
" label 2 is the GD-enhancing tumor\n",
221221
" label 3 is the necrotic and non-enhancing tumor core\n",
222-
" The possible classes are TC (Tumor core), WC (Whole tumor)\n",
222+
" The possible classes are TC (Tumor core), WT (Whole tumor)\n",
223223
" and ET (Enhancing tumor).\n",
224224
"\n",
225225
" \"\"\"\n",
@@ -230,7 +230,7 @@
230230
" result = list()\n",
231231
" # merge label 2 and label 3 to construct TC\n",
232232
" result.append(np.logical_or(d[key] == 2, d[key] == 3))\n",
233-
" # merge labels 1, 2 and 3 to construct WC\n",
233+
" # merge labels 1, 2 and 3 to construct WT\n",
234234
" result.append(np.logical_or(np.logical_or(d[key] == 2, d[key] == 3), d[key] == 1))\n",
235235
" # label 2 is ET\n",
236236
" result.append(d[key] == 2)\n",

0 commit comments

Comments
 (0)