From cb17d65343e336226a19ad62de7b8ba665d599d0 Mon Sep 17 00:00:00 2001 From: Joost van Griethuysen Date: Wed, 16 Aug 2017 11:04:08 +0200 Subject: [PATCH] BUG: Fix JSON error in RadiomicsExample.ipynb Similar error and fix as previous 2 commits; missing comma in notebook breaks JSON decoding. --- notebooks/RadiomicsExample.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/RadiomicsExample.ipynb b/notebooks/RadiomicsExample.ipynb index 1212fbef..dc26c16e 100644 --- a/notebooks/RadiomicsExample.ipynb +++ b/notebooks/RadiomicsExample.ipynb @@ -169,7 +169,7 @@ "# Instantiate the extractor\n", "params = os.path.join(os.getcwd(), '..', 'examples', 'exampleSettings', 'Params.yaml')\n", "\n", - "extractor = featureextractor.RadiomicsFeaturesExtractor(params)" + "extractor = featureextractor.RadiomicsFeaturesExtractor(params)", "result_1 = extractor.execute(image_1, label_1)\n", "result_2 = extractor.execute(image_2, label_2)" ]