Skip to content

Commit

Permalink
BUG: Fix JSON error in RadiomicsExample.ipynb
Browse files Browse the repository at this point in the history
Similar error and fix as previous 2 commits; missing comma in notebook breaks JSON decoding.
  • Loading branch information
JoostJM committed Aug 16, 2017
1 parent 1043547 commit cb17d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/RadiomicsExample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
Expand Down

0 comments on commit cb17d65

Please sign in to comment.