Hi,
@Deepti_Prasad
At the end of the assignment notebook Brain Tumor Auto-Segmentation for Magnetic Resonance Imaging (MRI) in section 5.3 a function predict_and_viz(image, label, model, threshold) able to run on entire scans is mentioned and used.
When I look in to utils about the implementation of the function, something puzzles me: model_label_reformatted = np.zeros((240, 240, 155, 4))
model_label_reformatted = to_categorical(label, num_classes=4).astype(
np.uint8)
Model_label_reformatted seems to initialized with Ground Truth values : label and not model predictions
Regards