We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebad0dd commit f392bc6Copy full SHA for f392bc6
1 file changed
AURORA/tutorial.ipynb
@@ -193,7 +193,10 @@
193
],
194
"source": [
195
"from utils import visualize_results\n",
196
- "visualize_results(t1_file=\"data/t1n.nii.gz\", segmentation_file=\"output/segmentation.nii.gz\")"
+ "\n",
197
+ "visualize_results(\n",
198
+ " t1_file=\"data/t1n.nii.gz\", segmentation_file=\"output/segmentation.nii.gz\"\n",
199
+ ")"
200
]
201
},
202
{
@@ -358,7 +361,7 @@
358
361
"# load data\n",
359
362
"t1_np = nib.load(\"data/t1n.nii.gz\").get_fdata()\n",
360
363
"results = inferer.infer(t1=t1_np)\n",
- "print([f\"{k} : {v.shape}\" for k,v in results.items()])"
364
+ "print([f\"{k} : {v.shape}\" for k, v in results.items()])"
365
366
}
367
0 commit comments